diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-10-07 01:33:26 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-10-07 01:33:26 +0200 |
| commit | a2cbf737e78051c2cb10eeaf4a5dccc19d6348ba (patch) | |
| tree | f53ab92a0c94926e92117891eb87f19cafaa536c /profiles/station/packages.nix | |
| parent | cfaef26e8718916adcc68fbfb63b15f2389b2cd2 (diff) | |
first working
Diffstat (limited to 'profiles/station/packages.nix')
| -rw-r--r-- | profiles/station/packages.nix | 17 |
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; + }; } |
