mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 01:42:55 +00:00
fix: fully enable zfs
This commit is contained in:
parent
640e447006
commit
13014e6cc1
@ -20,6 +20,10 @@ nixpkgs.lib.nixosSystem {
|
|||||||
{
|
{
|
||||||
server = true;
|
server = true;
|
||||||
zfs.enable = true;
|
zfs.enable = true;
|
||||||
|
|
||||||
|
# head -c 8 /etc/machine-id
|
||||||
|
networking.hostId = "600279f4"; # Random ID required for ZFS
|
||||||
|
|
||||||
gui.enable = false;
|
gui.enable = false;
|
||||||
theme = { colors = (import ../../colorscheme/gruvbox).dark; };
|
theme = { colors = (import ../../colorscheme/gruvbox).dark; };
|
||||||
nixpkgs.overlays = overlays;
|
nixpkgs.overlays = overlays;
|
||||||
|
@ -8,6 +8,8 @@
|
|||||||
# Only use compatible Linux kernel, since ZFS can be behind
|
# Only use compatible Linux kernel, since ZFS can be behind
|
||||||
boot.kernelPackages =
|
boot.kernelPackages =
|
||||||
config.boot.zfs.package.latestCompatibleLinuxPackages;
|
config.boot.zfs.package.latestCompatibleLinuxPackages;
|
||||||
|
boot.kernelParams = [ "nohibernate" ];
|
||||||
|
boot.supportedFilesystems = [ "zfs" ];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user