Modified config so kiiwy doesn't get mad

This commit is contained in:
2025-01-09 19:28:33 +01:00
parent ba648c277c
commit e09285d330
3 changed files with 164 additions and 170 deletions

View File

@@ -6,44 +6,15 @@
../../modules/home/default.nix
];
options = {
host = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
headless = lib.mkOption {
type = with lib.types; bool;
description = ''
Is this machine headless?
'';
};
};
config = {
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
host = "xv-desktop";
headless = false;
home.packages = with pkgs; [
unstable.prismlauncher
unstable.vesktop
unstable.rnote
# Office
libreoffice
];
# Enable home-manager
programs.home-manager.enable = true;
settings = {
hostname = "xv-desktop";
applications.common.enable = true;
applications.alacritty.enable = false;
applications.devenv.enable = true;
@@ -61,10 +32,33 @@
theming.fonts.enable = true;
theming.nix-colors.enable = false;
theming.stylix.enable = true;
theming.stylix.wallpaper = "wallpaper-2.png";
theming.stylix.theme = "da-one-ocean";
desktop-environments.hyprland.enable = false;
};
home.packages = with pkgs; [
unstable.prismlauncher
unstable.vesktop
unstable.rnote
# Office
libreoffice
];
# Enable home-manager
programs.home-manager.enable = true;
home.stateVersion = "24.05";
};
options = {
settings.hostname = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
};
}