From cb6cc0c0922f32c17dab095484154b7ffac949d0 Mon Sep 17 00:00:00 2001 From: NullBite Date: Wed, 28 Feb 2024 16:14:08 -0500 Subject: [PATCH] nullbox: switch to hyprland with plasma alt --- hosts/nullbox/configuration.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/nullbox/configuration.nix b/hosts/nullbox/configuration.nix index cd47845..9a1002d 100644 --- a/hosts/nullbox/configuration.nix +++ b/hosts/nullbox/configuration.nix @@ -30,12 +30,24 @@ })) ]; + specialisation.plasma.configuration = { + system.nixos.tags = [ "Plasma" ]; + nixfiles = { + sessions.hyprland.enable = false; + sessions.plasma.enable = true; + }; + }; + + hardware.nvidia.open = true; + # nixfiles nixfiles = { profile.pc.enable = true; programs.adb.enable = true; common.remoteAccess.enable = true; - sessions.plasma.enable = true; + sessions.plasma.enable = lib.mkDefault false; + sessions.hyprland.enable = lib.mkDefault true; + sessions.hyprland.useFlake = true; hardware.nvidia.modesetting.enable = true; packageSets.gaming.enable = true; };