diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-05 17:09:38 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-07-05 17:09:38 +0200 |
commit | fd3e86aece81deda9bea9875b491a8f0dfa7eac8 (patch) | |
tree | a8ffc4d0b8297e97eaeebe069b52592688887e29 | |
parent | Phobos+Luna: Add bluetooth (diff) | |
download | nixos-config-fd3e86aece81deda9bea9875b491a8f0dfa7eac8.tar.gz nixos-config-fd3e86aece81deda9bea9875b491a8f0dfa7eac8.tar.bz2 nixos-config-fd3e86aece81deda9bea9875b491a8f0dfa7eac8.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" ]; } |