Compare commits

...

2 Commits

Author SHA1 Message Date
d9c3cb9889 fix: add 'dconf2nix' package to 'dconf' module 2026-02-02 14:30:09 +01:00
9d22c210e3 refactor: clean up packages 2026-02-02 14:29:22 +01:00
3 changed files with 14 additions and 10 deletions

View File

@@ -2,13 +2,10 @@
with pkgs; with pkgs;
[ [
bash-completion
bat bat
entr entr
feh feh
fzf fzf
gh
git
haskellPackages.pandoc-crossref haskellPackages.pandoc-crossref
htop htop
jq jq
@@ -20,7 +17,6 @@ with pkgs;
parallel parallel
pass pass
pnpm pnpm
python3
ripgrep ripgrep
silver-searcher silver-searcher
sops sops

View File

@@ -75,7 +75,13 @@ in
kubecolor.enable = true; kubecolor.enable = true;
}; };
home.packages = import ./packages.nix { home.packages =
import ./packages.nix {
inherit inputs;
inherit config;
inherit pkgs;
}
++ import ../packages.nix {
inherit inputs; inherit inputs;
inherit config; inherit config;
inherit pkgs; inherit pkgs;

View File

@@ -1,4 +1,4 @@
{ config, ... }: { config, pkgs, ... }:
let let
terminal = "kitty"; terminal = "kitty";
@@ -119,4 +119,6 @@ in
toggle-quick-settings = [ ]; toggle-quick-settings = [ ];
}; };
}; };
home.packages = with pkgs; [ dconf2nix ];
} }