diff options
author | Ben Sima <ben@bsima.me> | 2020-03-29 05:00:59 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-03-29 07:49:02 -0700 |
commit | 22bbc12e63c5fb4fd57ebd0f7a720dcda050d9ca (patch) | |
tree | 0da03d7914f5a3724b9c58209835ad414b2e1497 /Com/Simatime/dev/configuration.nix | |
parent | 831620c6ae0461228e0801de92dfc6671333a079 (diff) |
Bump nixpkgs pin
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"; |