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,22 +6,6 @@
../../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";
@@ -29,9 +13,10 @@
};
host = "xv-laptop";
headless = false;
settings = {
hostname = "xv-laptop";
applications.common.enable = true;
applications.alacritty.enable = true;
applications.devenv.enable = true;
@@ -89,4 +74,13 @@
home.stateVersion = "24.05";
};
options = {
settings.hostname = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
};
}