Changed config options

This commit is contained in:
xeovalyte 2024-08-09 11:44:43 +02:00
parent cbd1136418
commit bae014ee64
Signed by: xeovalyte
SSH Key Fingerprint: SHA256:kSQDrQDmKzljJzfGYcd3m9RqHi4h8rSwkZ3sQ9kBURo

View File

@ -12,14 +12,27 @@
../../modules/home/cli/common ../../modules/home/cli/common
]; ];
home = { options = {
username = "xeovalyte"; host = lib.mkOption {
homeDirectory = "/home/xeovalyte"; type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
}; };
home.packages = with pkgs; [ config = {
unstable.prismlauncher home = {
]; username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
home.stateVersion = "24.05"; host = "xv-desktop";
home.packages = with pkgs; [
unstable.prismlauncher
];
home.stateVersion = "24.05";
};
} }