diff --git a/nixosConfigurations/proxy/main.nix b/nixosConfigurations/proxy/main.nix index 81c2110..b17dc0b 100644 --- a/nixosConfigurations/proxy/main.nix +++ b/nixosConfigurations/proxy/main.nix @@ -17,6 +17,8 @@ "${modulesPath}/profiles/qemu-guest.nix" "${modulesPath}/profiles/minimal.nix" ]; + environment.noXlibs = false; + services.qemuGuest.enable = true; environment.systemPackages = [ diff --git a/nixosModules/misc.nix b/nixosModules/misc.nix index c12e7b6..1c50169 100644 --- a/nixosModules/misc.nix +++ b/nixosModules/misc.nix @@ -14,7 +14,6 @@ nix-output-monitor # nom nom nom nom; nix-tree # view packages pciutils # lspci - nixos-rebuild-ng ; nix-janitor = pkgs.symlinkJoin { name = "nix-janitor"; @@ -32,7 +31,6 @@ # Mr sandro why services.libinput.enable = true; programs.nano.enable = false; - programs.less.enable = false; environment.defaultPackages = lib.mkForce [ ]; @@ -73,8 +71,6 @@ # Useless with flakes (without configuring) programs.command-not-found.enable = false; - system.disableInstallerTools = true; + system.rebuild.enableNg = true; services.userborn.enable = true; - boot.enableContainers = false; - }