35 lines
508 B
Nix
Executable File
35 lines
508 B
Nix
Executable File
{ lib
|
|
, config
|
|
, namespace
|
|
, ...
|
|
}:
|
|
let
|
|
inherit (lib.${namespace}) enabled;
|
|
in
|
|
{
|
|
home.stateVersion = "25.11";
|
|
|
|
reichard = {
|
|
user = {
|
|
enable = true;
|
|
inherit (config.snowfallorg.user) name;
|
|
};
|
|
|
|
programs = {
|
|
graphical = {
|
|
ghostty = enabled;
|
|
ghidra = enabled;
|
|
};
|
|
|
|
terminal = {
|
|
btop = enabled;
|
|
direnv = enabled;
|
|
git = enabled;
|
|
k9s = enabled;
|
|
nvim = enabled;
|
|
opencode = enabled;
|
|
};
|
|
};
|
|
};
|
|
}
|