diff options
| author | Baitinq <[email protected]> | 2022-07-05 17:09:38 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-05 17:09:38 +0200 |
| commit | 86513721d42f12bd06e5241de28e5117373d4a55 (patch) | |
| tree | bf2a551b0a7ae3bc636597db9a735383fcae7f6d | |
| parent | Phobos+Luna: Add bluetooth (diff) | |
| download | nixos-config-86513721d42f12bd06e5241de28e5117373d4a55.tar.gz nixos-config-86513721d42f12bd06e5241de28e5117373d4a55.tar.bz2 nixos-config-86513721d42f12bd06e5241de28e5117373d4a55.zip | |
Add virt-manager to the user packages
| -rw-r--r-- | hosts/home.nix | 1 | ||||
| -rw-r--r-- | modules/virtualisation/default.nix | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index c32d02f..bd5864f 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -34,6 +34,7 @@ in nixpkgs-fmt paperkey openjdk8 + virt-manager ] ++ (with pkgs.custom; [ smart-wallpaper diff --git a/modules/virtualisation/default.nix b/modules/virtualisation/default.nix index 82df906..1ce28f0 100644 --- a/modules/virtualisation/default.nix +++ b/modules/virtualisation/default.nix @@ -6,5 +6,5 @@ libvirtd.enable = true; }; - users.users.${user}.extraGroups = [ "docker" ]; + users.users.${user}.extraGroups = [ "docker" "libvirtd" ]; } |