sneeuwvlok/_hosts/tulkas/users/chris/default.nix
2025-07-28 14:34:09 +02:00

33 lines
496 B
Nix

{ lib, ... }: let
inherit (lib) mkForce;
in
{
user = {
full_name = "Chris Kruining";
email = "chris@kruining.eu";
is_trusted = true;
};
themes = {
enable = true;
theme = "everforest";
polarity = "dark";
};
desktop = {
terminal = {
default = "ghostty";
ghostty.enable = true;
};
editors = {
default = "nano";
nano.enable = true;
};
};
shell = {
default = "zsh";
toolset.git.enable = mkForce false;
};
}