diff options
author | EuAndreh <eu@euandre.org> | 2023-02-22 11:12:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-02-22 11:12:24 -0300 |
commit | 378a32eb9274d0fa98f1278fb3e40d939b50a951 (patch) | |
tree | 8b2106b200ec48a7902a1fbbb2d0506bf8848267 | |
parent | etc/nix/configuration.nix: Remove debug info from packages (diff) | |
download | dotfiles-378a32eb9274d0fa98f1278fb3e40d939b50a951.tar.gz dotfiles-378a32eb9274d0fa98f1278fb3e40d939b50a951.tar.xz |
etc/nix/configuration.nix: Disable libvirtd service
I'm using only Docker for virtualization on this computer.
-rw-r--r-- | etc/nix/configuration.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/etc/nix/configuration.nix b/etc/nix/configuration.nix index 7515d4a..f52cd8e 100644 --- a/etc/nix/configuration.nix +++ b/etc/nix/configuration.nix @@ -87,9 +87,6 @@ }; }; - # required by vagrant+libvirt - nfs.server.enable = true; - xserver = { enable = true; layout = "br"; @@ -115,7 +112,7 @@ isNormalUser = true; uid = 1000; description = "EuAndreh"; - extraGroups = [ "wheel" "networkmanager" "libvirtd" "docker" ]; + extraGroups = [ "wheel" "networkmanager" "docker" ]; }; }; # From the Guix manual: @@ -167,6 +164,5 @@ extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; }; - virtualisation.libvirtd.enable = true; virtualisation.docker.enable = true; } |