Changed stylix

This commit is contained in:
2025-01-09 17:14:10 +01:00
parent ac8f095cce
commit fa8a1f2eec
3 changed files with 46 additions and 38 deletions

View File

@@ -6,32 +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 = "kiiwy";
homeDirectory = "/home/kiiwy";
};
host = "ch-clt-dsk01";
headless = false;
settings = {
hostname = "ch-clt-dsk01";
applications.common.enable = true;
applications.alacritty.enable = false;
applications.devenv.enable = false;
@@ -49,6 +32,8 @@
theming.fonts.enable = true;
theming.nix-colors.enable = false;
theming.stylix.enable = true;
theming.stylix.wallpaper = "kiiwy";
theming.stylix.theme = "theme";
desktop-environments.hyprland.enable = false;
};
@@ -60,6 +45,8 @@
unstable.vesktop
blender
brave
# Office
libreoffice
];
@@ -70,4 +57,12 @@
home.stateVersion = "24.05";
};
options = {
settings.hostname = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
};
}