diff --git a/hosts/archlaptop-vm/hardware-configuration.nix b/hosts/archlaptop-vm/hardware-configuration.nix index e3c5a38..d65f5c9 100644 --- a/hosts/archlaptop-vm/hardware-configuration.nix +++ b/hosts/archlaptop-vm/hardware-configuration.nix @@ -27,6 +27,11 @@ fsType = "vfat"; }; + fileSystems."/home/gabe/nix-config-host" = { + device = "nix-config-host"; + fsType = "virtiofs"; + }; + swapDevices = [ {device = "/dev/disk/by-uuid/506f2ef4-c9ee-4fe6-8590-95e0821d5903";} ]; diff --git a/hosts/workstation-vm/hardware-configuration.nix b/hosts/workstation-vm/hardware-configuration.nix index c589350..f392da8 100644 --- a/hosts/workstation-vm/hardware-configuration.nix +++ b/hosts/workstation-vm/hardware-configuration.nix @@ -27,6 +27,11 @@ fsType = "vfat"; }; + fileSystems."/home/gabe/nix-config-host" = { + device = "nix-config-host"; + fsType = "virtiofs"; + }; + swapDevices = [ {device = "/dev/disk/by-uuid/679dd57a-6a34-47f1-a0c8-cdf1e280c3fa";} ]; diff --git a/modules/home-manager/terminal/pass.nix b/modules/home-manager/terminal/pass.nix index ad9699a..55ad8a7 100644 --- a/modules/home-manager/terminal/pass.nix +++ b/modules/home-manager/terminal/pass.nix @@ -6,7 +6,7 @@ }: { programs.password-store = { enable = true; - settings={ + settings = { PASSWORD_STORE_DIR = "$HOME/keys/password-store"; }; };