57 lines
867 B
Nix
Executable File
57 lines
867 B
Nix
Executable File
{ pkgs
|
|
, lib
|
|
, config
|
|
, namespace
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (lib.${namespace}) enabled;
|
|
in
|
|
{
|
|
home.stateVersion = "25.05";
|
|
|
|
reichard = {
|
|
user = {
|
|
enable = true;
|
|
inherit (config.snowfallorg.user) name;
|
|
};
|
|
|
|
programs = {
|
|
graphical = {
|
|
ghostty = enabled;
|
|
};
|
|
|
|
terminal = {
|
|
btop = enabled;
|
|
direnv = enabled;
|
|
git = enabled;
|
|
k9s = enabled;
|
|
nvim = enabled;
|
|
aws = enabled;
|
|
};
|
|
};
|
|
};
|
|
|
|
# Global Packages
|
|
programs.jq = enabled;
|
|
programs.pandoc = enabled;
|
|
home.packages = with pkgs; [
|
|
android-tools
|
|
imagemagick
|
|
mosh
|
|
python312
|
|
texliveSmall # Pandoc PDF Dep
|
|
google-cloud-sdk
|
|
tldr
|
|
opencode
|
|
claude-code
|
|
reichard.qwen-code
|
|
];
|
|
|
|
# SQLite Configuration
|
|
home.file.".sqliterc".text = ''
|
|
.headers on
|
|
.mode column
|
|
'';
|
|
}
|