diff --git a/hosts/physical/crow/default.nix b/hosts/physical/crow/default.nix index a537056..8c758da 100644 --- a/hosts/physical/crow/default.nix +++ b/hosts/physical/crow/default.nix @@ -22,7 +22,8 @@ ]; }; - networking.hostName = "crow"; + networking.hostName = "crow"; + networking.hostId = "0b83186c"; fileSystems."/home/${vars.user}/Games/Steam" = { device = "/dev/disk/by-uuid/312227de-38a9-4475-9e46-fecc232f2002"; diff --git a/nixos/roles/physical/desktop/common/apps/default.nix b/nixos/roles/physical/desktop/common/apps/default.nix index 8e6704f..7314f09 100644 --- a/nixos/roles/physical/desktop/common/apps/default.nix +++ b/nixos/roles/physical/desktop/common/apps/default.nix @@ -3,7 +3,5 @@ ./steam.nix ./pwvucontrol.nix ./wine.nix - # ./etcher.nix - ./zfs.nix ]; } diff --git a/nixos/roles/physical/desktop/common/apps/etcher.nix b/nixos/roles/physical/desktop/common/apps/etcher.nix deleted file mode 100644 index 87b91d3..0000000 --- a/nixos/roles/physical/desktop/common/apps/etcher.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: - -{ - environment.systemPackages = with pkgs; [ - etcher - ]; -} diff --git a/nixos/roles/physical/desktop/common/apps/zfs.nix b/nixos/roles/physical/desktop/common/apps/zfs.nix deleted file mode 100644 index fbc3ab3..0000000 --- a/nixos/roles/physical/desktop/common/apps/zfs.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs, ... }: - -{ - environment.systemPackages = with pkgs; [ - zfs - ]; -} diff --git a/nixos/roles/physical/desktop/common/default.nix b/nixos/roles/physical/desktop/common/default.nix index 8c99161..3631cb5 100644 --- a/nixos/roles/physical/desktop/common/default.nix +++ b/nixos/roles/physical/desktop/common/default.nix @@ -2,7 +2,4 @@ imports = [ ./apps ]; - - boot.supportedFilesystems = [ "zfs" ]; - boot.initrd.supportedFilesystems = [ "zfs" ]; }