2024-08-09 11:45:19 +02:00
|
|
|
{ pkgs, lib, ... }:
|
2024-03-12 21:24:29 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2024-06-20 13:41:57 +02:00
|
|
|
# GUI
|
|
|
|
../../modules/home/gui/common
|
2024-08-09 11:42:24 +02:00
|
|
|
../../modules/home/gui/hyprland
|
|
|
|
../../modules/home/gui/nextcloud.nix
|
|
|
|
../../modules/home/gui/theming.nix
|
2024-06-20 13:41:57 +02:00
|
|
|
|
|
|
|
# CLI
|
|
|
|
../../modules/home/cli/common
|
2024-03-12 21:24:29 +01:00
|
|
|
];
|
|
|
|
|
2024-08-09 11:44:43 +02:00
|
|
|
options = {
|
|
|
|
host = lib.mkOption {
|
|
|
|
type = with lib.types; str;
|
|
|
|
description = ''
|
|
|
|
Define the host of the machine
|
|
|
|
'';
|
|
|
|
};
|
2024-03-12 21:24:29 +01:00
|
|
|
};
|
|
|
|
|
2024-08-09 11:44:43 +02:00
|
|
|
config = {
|
|
|
|
home = {
|
|
|
|
username = "xeovalyte";
|
|
|
|
homeDirectory = "/home/xeovalyte";
|
|
|
|
};
|
|
|
|
|
|
|
|
host = "xv-desktop";
|
2024-03-12 21:24:29 +01:00
|
|
|
|
2024-08-09 11:44:43 +02:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
unstable.prismlauncher
|
|
|
|
];
|
|
|
|
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
};
|
2024-03-12 21:24:29 +01:00
|
|
|
}
|