diff options
author | tdback <tyler@tdback.net> | 2025-01-26 11:32:37 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-26 11:32:37 -0500 |
commit | 3f33751dcb0cafb273eb868f230b1ae348437f89 (patch) | |
tree | c1c9d6f80532c8ff892efdd14c9f4a6e8bf43a14 /modules/profiles/zfs | |
parent | 1b40ddcb978dec8cf52a82319f1f8b4e4eedd3f8 (diff) |
profiles: cleaned up profiles, removed obsolete
Diffstat (limited to 'modules/profiles/zfs')
-rw-r--r-- | modules/profiles/zfs/default.nix | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/modules/profiles/zfs/default.nix b/modules/profiles/zfs/default.nix index 8344450..f79e91c 100644 --- a/modules/profiles/zfs/default.nix +++ b/modules/profiles/zfs/default.nix @@ -1,4 +1,8 @@ -{ lib, pkgs, ... }: +{ + lib, + pkgs, + ... +}: { boot = { zfs.forceImportRoot = false; @@ -22,7 +26,5 @@ }; }; - environment.systemPackages = with pkgs; [ - zfs - ]; + environment.systemPackages = with pkgs; [ zfs ]; } |