summaryrefslogtreecommitdiff
path: root/users/seth/programs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/programs/default.nix')
-rw-r--r--users/seth/programs/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/users/seth/programs/default.nix b/users/seth/programs/default.nix
index 902f7bf..d1b8f97 100644
--- a/users/seth/programs/default.nix
+++ b/users/seth/programs/default.nix
@@ -11,6 +11,7 @@
clang
deadnix
eclint
+ lld
statix
]
else [];
@@ -25,6 +26,10 @@
steam
]
else [];
+ systemPackages =
+ if !config.seth.standalone
+ then with pkgs; [python311]
+ else [];
in {
imports = [
./git.nix
@@ -41,12 +46,11 @@ in {
exa
fd
gh
- lld
rclone
restic
ripgrep
- python311
]
++ develPackages
- ++ guiApps;
+ ++ guiApps
+ ++ systemPackages;
}