Reworked home manager configuration to modules
This commit is contained in:
@@ -2,21 +2,10 @@
|
||||
|
||||
{
|
||||
imports = [
|
||||
# GUI
|
||||
../../modules/home/gui/common
|
||||
../../modules/home/gui/hyprland
|
||||
../../modules/home/gui/nextcloud.nix
|
||||
../../modules/home/gui/theming.nix
|
||||
../../modules/home/gui/thunderbird.nix
|
||||
|
||||
# CLI
|
||||
../../modules/home/cli/common
|
||||
../../modules/home/cli/develop.nix
|
||||
../../modules/home/cli/ssh.nix
|
||||
../../modules/home/cli/yazi.nix
|
||||
# Modules
|
||||
../../modules/home/default.nix
|
||||
];
|
||||
|
||||
|
||||
options = {
|
||||
host = lib.mkOption {
|
||||
type = with lib.types; str;
|
||||
@@ -42,6 +31,27 @@
|
||||
host = "xv-laptop";
|
||||
headless = false;
|
||||
|
||||
settings = {
|
||||
applications.common.enable = true;
|
||||
applications.alacritty.enable = true;
|
||||
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 = true;
|
||||
|
||||
desktop-environments.hyprland.enable = false;
|
||||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# Desktop Applications
|
||||
kdenlive
|
||||
|
Reference in New Issue
Block a user