33 lines
496 B
Nix
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;
|
|
};
|
|
}
|