Added desktop environments

This commit is contained in:
2025-05-08 14:46:36 +02:00
parent 1581a55e46
commit 1efa96105e
7 changed files with 71 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
# This file comes from https://github.com/kahlstrm/nixos-config/blob/main/lib/mksystem.nix
# This file is based on https://github.com/kahlstrm/nixos-config/blob/main/lib/mksystem.nix
{
overlays,
nixvim,
@@ -11,7 +11,8 @@ name:
email,
wsl ? false,
stable ? false,
gamingSystem ? false
gamingSystem ? false,
desktopEnvironment ? ""
}:
let
# True if this is a WSL system.
@@ -62,6 +63,7 @@ let
currentSystemName = name;
currentSystemUser = user;
currentSystemEmail = email;
currentSystemDe = desktopEnvironment;
gamingSystem = gamingSystem;
isWSL = isWSL;
isDarwin = isDarwin;