nix/common/home.nix
2026-08-22 23:28:20 +02:00

47 lines
877 B
Nix

{
pkgs,
filter,
config,
...
}:
{
home.username = "strix";
home.homeDirectory = "/home/strix";
home.packages = with pkgs; [
ghostty
thunderbird
vscode
steam
bitwarden-desktop
nixd
treefmt
tealdeer
];
programs.git = {
enable = true;
settings = {
user.name = "strix";
user.email = "strix@saluco.nl";
init = { defaultBranch = "main"; };
};
};
dconf.settings = {
"org/gnome/settings-daemon/plugins/media-keys" = {
custom-keybindings = [
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"
];
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0" = {
name = "terminal";
command = "ghostty";
binding = "<Super>Return";
};
};
programs.home-manager.enable = true;
home.stateVersion = "26.11";
}