Removed homelab and updated config

This commit is contained in:
2025-01-09 22:52:28 +01:00
parent e09285d330
commit c0661b2522
56 changed files with 15 additions and 7415 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 = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
host = "xv-surface";
headless = false;
settings = {
hostname = "xv-surface";
applications.common.enable = true;
applications.alacritty.enable = false;
applications.devenv.enable = false;
@@ -47,8 +30,9 @@
services.nextcloud-sync.enable = true;
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;
};
@@ -67,4 +51,12 @@
home.stateVersion = "24.05";
};
options = {
settings.hostname = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
};
}