Compare commits

..

No commits in common. "5ed43a419304273770d0f0f6fb07a243efbd558d" and "7574b6bfa4e13db21887135f5946a28d4a45940e" have entirely different histories.

2 changed files with 5 additions and 25 deletions

View file

@ -191,24 +191,5 @@
}; };
}; };
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,13 +3,12 @@
lib, lib,
... ...
}: { }: {
environment.systemPackages = with pkgs; [
virt-manager
];
virtualisation = { virtualisation = {
libvirtd = { libvirtd.enable = true;
enable = true;
qemu.swtpm.enable = true;
};
spiceUSBRedirection.enable = true; spiceUSBRedirection.enable = true;
}; };
programs.virt-manager.enable = true;
} }