feat: add beets
This commit is contained in:
parent
5d40d31768
commit
365196caf6
2 changed files with 42 additions and 2 deletions
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../modules/zfs_unencrypted.nix
|
||||
../../modules/shared.nix
|
||||
|
|
@ -8,6 +12,7 @@
|
|||
./mail-server.nix
|
||||
./website/root
|
||||
./navidrome.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
];
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
|
|
@ -33,6 +38,19 @@
|
|||
};
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
users.moritz = {
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
username = "moritz";
|
||||
homeDirectory = "/home/moritz";
|
||||
stateVersion = "25.05";
|
||||
};
|
||||
};
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
};
|
||||
|
||||
# You can get your disk id by running the following command on the installer:
|
||||
# Replace <IP> with the IP of the installer printed on the screen or by running the `ip addr` command.
|
||||
# ssh root@<IP> lsblk --output NAME,ID-LINK,FSTYPE,SIZE,MOUNTPOINT
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue