This commit is contained in:
2024-12-28 17:09:18 +01:00
100 changed files with 2582 additions and 2026 deletions

View File

@@ -2,16 +2,13 @@
{
imports = [
# GUI
../../modules/home/gui/common
../../modules/home/gui/hyprland
../../modules/home/gui/nextcloud.nix
../../modules/home/gui/theming.nix
# CLI
../../modules/home/cli/common
# Modules
../../modules/home/default.nix
];
# Enable home-manager
programs.home-manager.enable = true;
options = {
host = lib.mkOption {
type = with lib.types; str;
@@ -45,6 +42,28 @@
# Enable home-manager
programs.home-manager.enable = true;
settings = {
applications.common.enable = true;
applications.alacritty.enable = false;
applications.devenv.enable = true;
applications.firefox.enable = true;
applications.git.enable = true;
applications.helix.enable = true;
applications.zsh.enable = true;
applications.ssh.enable = true;
applications.thunderbird.enable = true;
applications.yazi.enable = true;
applications.zellij.enable = true;
services.nextcloud-sync.enable = true;
theming.fonts.enable = true;
theming.nix-colors.enable = false;
theming.stylix.enable = true;
desktop-environments.hyprland.enable = false;
};
home.stateVersion = "24.05";
};
}