diff options
Diffstat (limited to 'Com/Simatime/dev/configuration.nix')
-rw-r--r-- | Com/Simatime/dev/configuration.nix | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Com/Simatime/dev/configuration.nix b/Com/Simatime/dev/configuration.nix index 1415930..3b69f6f 100644 --- a/Com/Simatime/dev/configuration.nix +++ b/Com/Simatime/dev/configuration.nix @@ -35,13 +35,12 @@ in { boot.loader.efi.canTouchEfiVariables = true; boot.enableContainers = true; - boot.initrd.luks.devices = [ - { - name = "root"; + boot.initrd.luks.devices = { + root = { device = "/dev/disk/by-uuid/a0160f25-e0e3-4af0-8236-3e298eac957a"; preLVM = true; - } - ]; + }; + }; powerManagement.enable = false; @@ -170,7 +169,7 @@ in { }; }; - emby = { # previously emby + jellyfin = { # previously emby enable = true; user = "emby"; group = "emby"; |