nixos-config/zenith/home.nix
2024-12-26 13:43:38 +01:00

89 lines
1.8 KiB
Nix

{userSettings, ...}: {
# Home manager configuration
home.username = "${userSettings.username}";
home.homeDirectory = "/home/${userSettings.username}";
home.stateVersion = "24.05"; # Please read the comment before changing.
imports = [
../nixos/home/packages/packages.nix
../nixos/home/desktop/desktops.nix
];
# Desktop management
desktop.hyprland.enable = true;
desktop.kde.enable = true;
desktop.gnome.enable = false;
# Shell management
sh.oh-my-posh.enable = true;
sh.bash = {
enable = true;
oh-my-posh.enable = true;
};
sh.zsh = {
enable = true;
oh-my-posh.enable = true;
};
# Application lists
app_list = {
applications.enable = true;
games.enable = true;
hacking.enable = true;
programming.enable = true;
terminal_tools.enable = true;
};
# Configured programs to enable
program = {
kitty.enable = true;
tmux.enable = true;
zoxide.enable = true;
vscode = {
enable = true;
ide = {
python.enable = true;
go.enable = true;
csharp.enable = true;
cpp.enable = false;
web.enable = true;
};
nix.enable = true;
markdown.enable = true;
ai.enable = true;
git.enable = true;
themes.enable = false;
};
git.enable = true;
neovim.enable = true;
firefox.enable = true;
spotify.enable = true;
};
# Basic programs to enable
programs = {
bat.enable = true;
btop.enable = true;
fzf.enable = true;
};
home.file = {
".config/hypr/mocha.conf".source = ../config/mocha.conf;
".config/hypr/hypridle.conf".source = ../config/hypridle.conf;
".prettierrc".text = ''
{
"tabWidth": 4,
"useTabs": true
}
'';
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}