diff --git a/hosts/h002/flake.nix b/hosts/h002/flake.nix index fc8f94bc..5ff3f647 100644 --- a/hosts/h002/flake.nix +++ b/hosts/h002/flake.nix @@ -9,7 +9,7 @@ ros_neovim.url = "git+https://git.joshuabell.xyz/ringofstorms/nvim"; - impermanence.url = "github:nix-community/impermanence"; + # impermanence.url = "github:nix-community/impermanence"; }; outputs = @@ -35,7 +35,7 @@ inherit inputs; }; modules = [ - inputs.impermanence.nixosModules.impermanence + # inputs.impermanence.nixosModules.impermanence inputs.home-manager.nixosModules.default # TODO @@ -52,7 +52,7 @@ ( { lib, ... }: { - boot.loader.grub.device = lib.mkForce "/dev/disk/by-uuid/ca5d2b4d-8964-46c8-99cd-822ac62ac951"; + boot.loader.grub.device = lib.mkForce "/dev/disk/by-uuid/e8d53d2d-bb73-41d7-bc64-93af7d3a5e7b"; } ) inputs.common.nixosModules.hardening @@ -75,9 +75,9 @@ # ) ./hardware-configuration.nix - ./hardware-mounts.nix - ./impermanence.nix - ./impermanence-tools.nix + # ./hardware-mounts.nix + # ./impermanence.nix + # ./impermanence-tools.nix ( { config, diff --git a/hosts/h002/hardware-configuration.nix b/hosts/h002/hardware-configuration.nix index 398f0131..06d9a6d7 100644 --- a/hosts/h002/hardware-configuration.nix +++ b/hosts/h002/hardware-configuration.nix @@ -26,6 +26,15 @@ boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; + fileSystems."/" = { + device = "/dev/disk/by-uuid/e8d53d2d-bb73-41d7-bc64-93af7d3a5e7b"; + fsType = "ext4"; + }; + + swapDevices = [ + { device = "/dev/disk/by-uuid/f043c171-5d20-4c6c-bc82-6e72139d7cb1"; } + ]; + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking # (the default) this is the recommended approach. When using systemd-networkd it's # still possible to use this option, but it's recommended to use it in conjunction