Compare commits

...

2 commits

2 changed files with 25 additions and 5 deletions

View file

@ -191,5 +191,24 @@
}; };
}; };
homeConfigurations = {
jufr2 = let
username = "jufr2";
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
home/core.nix
home/neovim/default.nix
home/zsh/default.nix
];
};
};
}; };
} }

View file

@ -3,12 +3,13 @@
lib, lib,
... ...
}: { }: {
environment.systemPackages = with pkgs; [
virt-manager
];
virtualisation = { virtualisation = {
libvirtd.enable = true; libvirtd = {
enable = true;
qemu.swtpm.enable = true;
};
spiceUSBRedirection.enable = true; spiceUSBRedirection.enable = true;
}; };
programs.virt-manager.enable = true;
} }