diff --git a/flake.nix b/flake.nix index 0dbab5c..c02e04a 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ outputs = { self, nixpkgs }: { nixosConfigurations = { wildfire = nixpkgs.lib.nixosSystem { - specialArgs = { inputs = self.inputs; }; + specialArgs = { inputs = self.inputs // { inherit self; }; }; modules = [ ./hosts/wildfire/configuration.nix ]; }; }; diff --git a/modules/common.nix b/modules/common.nix index 23b9ac3..6d8e7fd 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ config, pkgs, inputs, ... }: { imports = [ diff --git a/modules/programs.nix b/modules/programs.nix index f6c8bcc..4146335 100644 --- a/modules/programs.nix +++ b/modules/programs.nix @@ -92,7 +92,6 @@ # enable VMs programs.virt-manager.enable = true; virtualisation = { - tmp.enable = true; libvirtd = { enable = true; qemu = {