summaryrefslogtreecommitdiff
path: root/users/seth/programs/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-28 06:30:33 -0500
committerseth <[email protected]>2023-01-28 06:30:33 -0500
commit5ee4a77d0a6dd23b080f30a08cb1b3d7cea360a0 (patch)
tree9a20a3c40ad587410a71d1fc03cdba312f4df8d3 /users/seth/programs/default.nix
parent904c82a745715966cbf023a3e8bdae609975f5d4 (diff)
make managing desktops easier for user
Diffstat (limited to 'users/seth/programs/default.nix')
-rw-r--r--users/seth/programs/default.nix14
1 files changed, 11 insertions, 3 deletions
diff --git a/users/seth/programs/default.nix b/users/seth/programs/default.nix
index 13b26ab..ac6a14a 100644
--- a/users/seth/programs/default.nix
+++ b/users/seth/programs/default.nix
@@ -14,6 +14,15 @@
statix
]
else [];
+
+ guiApps =
+ if config.seth.desktop != ""
+ then
+ with pkgs; [
+ discord
+ steam
+ ]
+ else [];
in {
imports = [
./git.nix
@@ -27,7 +36,6 @@ in {
home.packages = with pkgs;
[
bat
- discord
exa
fd
gh
@@ -35,8 +43,8 @@ in {
rclone
restic
ripgrep
- steam
python311
]
- ++ develPackages;
+ ++ develPackages
+ ++ guiApps;
}