summaryrefslogtreecommitdiff
path: root/profiles/station
diff options
context:
space:
mode:
authorMike Vink <ivi@vinkies.net>2023-10-23 19:55:32 +0200
committerMike Vink <ivi@vinkies.net>2023-10-23 19:55:38 +0200
commitff3a22f0076298282c63f416993c929b23fb5b6f (patch)
tree72c4ff966992e2c9c503477bd0c4247fe5473470 /profiles/station
parentbf110465f731976b4b4d8d584a4b6378bb9c865a (diff)
packages
Diffstat (limited to 'profiles/station')
-rw-r--r--profiles/station/packages.nix40
1 files changed, 13 insertions, 27 deletions
diff --git a/profiles/station/packages.nix b/profiles/station/packages.nix
index deea797..9dd6f20 100644
--- a/profiles/station/packages.nix
+++ b/profiles/station/packages.nix
@@ -3,14 +3,13 @@
config,
pkgs,
...
-}: let
- core-packages = with pkgs;
- [
+}: {
+ hm = {
+ home.packages = with pkgs; [
krew
dasel
initool
python311Packages.editorconfig
- gnutls
gcc
pkgsi686Linux.glibc
gnumake
@@ -20,7 +19,6 @@
calcurse
profanity
file
- lf
ueberzug
mypaint
lynx
@@ -30,39 +28,27 @@
k9s
powershell
azure-cli
- subversion
- ripgrep
inotify-tools
alejandra
statix
fzf
github-cli
lazygit
- fd
argocd
- parallel
bc
sxiv
nushell
sent
+ (nerdfonts.override {fonts = ["FiraCode"];})
+ noto-fonts
+ noto-fonts-emoji
+ docker
+ k9s
+ dmenu
+ librewolf
+ firefox-wayland
+ xclip
+ libreoffice
];
- mike-extra-packages = with pkgs; [
- (nerdfonts.override {fonts = ["FiraCode"];})
- noto-fonts
- noto-fonts-emoji
- docker
- k9s
- dmenu
- librewolf
- firefox-wayland
- xclip
- libreoffice
- ];
-in {
- hm = {
- home.packages =
- core-packages
- ++
- mike-extra-packages;
};
}