summaryrefslogtreecommitdiff
path: root/profiles/station/packages.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/station/packages.nix')
-rw-r--r--profiles/station/packages.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/profiles/station/packages.nix b/profiles/station/packages.nix
index 02c5b8e..19e7ad1 100644
--- a/profiles/station/packages.nix
+++ b/profiles/station/packages.nix
@@ -2,7 +2,6 @@
flake,
config,
pkgs,
- username,
...
}: let
core-packages = with pkgs;
@@ -65,8 +64,7 @@
sxiv
nushell
sent
- ]
- ++ (import ../shell-scripts.nix {inherit pkgs config;});
+ ];
mike-extra-packages = with pkgs; [
(nerdfonts.override {fonts = ["FiraCode"];})
noto-fonts
@@ -80,11 +78,10 @@
libreoffice
];
in {
- home.packages =
- core-packages
- ++ (
- if (username == "mike")
- then mike-extra-packages
- else []
- );
+ hm = {
+ home.packages =
+ core-packages
+ ++
+ mike-extra-packages;
+ };
}