fix statix issue, migrate non-essential packages to non-server

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
2024-05-21 23:34:58 -04:00
committed by Alice Huston
parent 82cbcff0fc
commit ec4a9cf623
3 changed files with 65 additions and 21 deletions

View File

@ -10,25 +10,27 @@
# Optional, hint electron apps to use wayland:
environment.sessionVariables.NIXOS_OZONE_WL = "1";
services.xserver.enable = true;
services.xserver.displayManager.session = [
{
manage = "desktop";
name = "hyprland";
start = ''
bash ${./hypr/wrappedhl} &
waitPID=$!
'';
}
];
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
services = {
xserver.enable = true;
xserver.displayManager.session = [
{
manage = "desktop";
name = "hyprland";
start = ''
bash ${./hypr/wrappedhl} &
waitPID=$!
'';
}
];
displayManager.sddm = {
enable = true;
wayland.enable = true;
};
services.dbus = {
enable = true;
implementation = "broker";
dbus = {
enable = true;
implementation = "broker";
};
};
programs.gnupg.agent = {