2024-06-13 23:33:14 +01:00
|
|
|
{ pkgs, inputs, outputs, ... }:
|
2024-05-13 22:17:40 +01:00
|
|
|
{
|
|
|
|
imports = [
|
2024-06-02 14:30:14 +01:00
|
|
|
inputs.nix-colors.homeManagerModules.default
|
2024-05-17 10:54:53 +01:00
|
|
|
./zsh.nix
|
2024-06-03 11:05:46 +01:00
|
|
|
./nixvim
|
2024-06-05 12:30:55 +01:00
|
|
|
];
|
2024-05-26 01:51:57 +01:00
|
|
|
|
2024-06-13 23:33:14 +01:00
|
|
|
nixpkgs.overlays = [
|
|
|
|
inputs.nur.overlay
|
|
|
|
outputs.overlays.additions
|
2024-06-22 14:37:19 +01:00
|
|
|
outputs.overlays.unstable-packages
|
2024-06-13 23:33:14 +01:00
|
|
|
];
|
|
|
|
|
2024-05-31 00:17:16 +01:00
|
|
|
# Global home packages without config go here (for all hosts and users)
|
|
|
|
home.packages = builtins.attrValues {
|
|
|
|
inherit (pkgs)
|
2024-06-05 12:30:55 +01:00
|
|
|
ripgrep
|
|
|
|
fzf
|
|
|
|
eza
|
|
|
|
pciutils
|
|
|
|
tree
|
|
|
|
jq
|
|
|
|
coreutils
|
|
|
|
btop
|
|
|
|
htop
|
|
|
|
postgresql
|
2024-06-15 00:50:30 +01:00
|
|
|
libqalculate
|
2024-06-05 12:30:55 +01:00
|
|
|
;
|
|
|
|
};
|
2024-06-25 22:04:28 +01:00
|
|
|
home.stateVersion = "24.05";
|
2024-05-13 22:17:40 +01:00
|
|
|
}
|