diff --git a/hosts/fern/default.nix b/hosts/fern/default.nix index 902db54..58215e9 100644 --- a/hosts/fern/default.nix +++ b/hosts/fern/default.nix @@ -27,7 +27,6 @@ wifi.enable = true; bluetooth.enable = true; sound.enable = true; - virtualisation.enable = true; services = { gc.enable = true; diff --git a/hosts/north/default.nix b/hosts/north/default.nix index 1e0843a..bacdcf3 100644 --- a/hosts/north/default.nix +++ b/hosts/north/default.nix @@ -25,7 +25,6 @@ de.hyprland.enable = true; sound.enable = true; - virtualisation.enable = true; services = { gc.enable = true; diff --git a/modules/home/programs/shell/zsh/default.nix b/modules/home/programs/shell/zsh/default.nix index 38cd9ad..4692f31 100644 --- a/modules/home/programs/shell/zsh/default.nix +++ b/modules/home/programs/shell/zsh/default.nix @@ -9,7 +9,7 @@ config = lib.mkIf config.custom.programs.shell.zsh.enable { custom.programs.shell.aliases.enable = true; - + programs = { zsh = { enable = true; diff --git a/modules/home/programs/virt-manager.nix b/modules/home/programs/virt-manager.nix deleted file mode 100644 index d0c7674..0000000 --- a/modules/home/programs/virt-manager.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ config, lib, ... }@moduleArgs: -{ - options.custom.programs.virt-manager.enable = lib.mkEnableOption "" // { - default = moduleArgs.osConfig.programs.virt-manager.enable or false; - }; - - config = lib.mkIf config.custom.programs.virt-manager.enable { - dconf.settings."org/virt-manager/virt-manager/connections" = { - autoconnect = [ "qemu:///system" ]; - uris = [ "qemu:///system" ]; - }; - }; -} diff --git a/modules/system/virtualisation.nix b/modules/system/virtualisation.nix deleted file mode 100644 index 061b153..0000000 --- a/modules/system/virtualisation.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ - config, - pkgs, - lib, - ... -}: -{ - options.custom.virtualisation.enable = lib.mkEnableOption ""; - - config = lib.mkIf config.custom.virtualisation.enable { - virtualisation.libvirtd.enable = true; - programs.virt-manager.enable = true; - - environment.systemPackages = [ pkgs.quickemu ]; - - virtualisation.virtualbox.host.enable = true; - }; -} diff --git a/users/seb/user.nix b/users/seb/user.nix index 5e01c35..8ea413f 100644 --- a/users/seb/user.nix +++ b/users/seb/user.nix @@ -6,10 +6,6 @@ isNormalUser = true; description = "Sebastian Stork"; hashedPasswordFile = config.sops.secrets."seb-password".path; - extraGroups = [ - "wheel" - "libvirtd" - "vboxusers" - ]; + extraGroups = [ "wheel" ]; }; }