diff --git a/flake.lock b/flake.lock index 16c8eec..2a5c124 100644 --- a/flake.lock +++ b/flake.lock @@ -386,11 +386,11 @@ }, "nixpkgs_4": { "locked": { - "lastModified": 1722421184, - "narHash": "sha256-/DJBI6trCeVnasdjUo9pbnodCLZcFqnVZiLUfqLH4jA=", + "lastModified": 1722813957, + "narHash": "sha256-IAoYyYnED7P8zrBFMnmp7ydaJfwTnwcnqxUElC1I26Y=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9f918d616c5321ad374ae6cb5ea89c9e04bf3e58", + "rev": "cb9a96f23c491c081b38eab96d22fa958043c9fa", "type": "github" }, "original": { diff --git a/hosts/glacier/default.nix b/hosts/glacier/default.nix index e4f4f59..f03e1fc 100644 --- a/hosts/glacier/default.nix +++ b/hosts/glacier/default.nix @@ -11,6 +11,7 @@ inputs.hardware.nixosModules.common-pc-ssd ./printing.nix + ./vm.nix ]; nixpkgs.hostPlatform = "x86_64-linux"; diff --git a/hosts/glacier/vm.nix b/hosts/glacier/vm.nix new file mode 100644 index 0000000..d923a08 --- /dev/null +++ b/hosts/glacier/vm.nix @@ -0,0 +1,4 @@ +{ + virtualisation.libvirtd.enable = true; + programs.virt-manager.enable = true; +}