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
];
options = {
host = lib.mkOption {
type = with lib.types; str;
description = ''
Define the host of the machine
'';
};
};
config = {
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
host = "xv-desktop";
home.packages = with pkgs; [
unstable.prismlauncher
];
home.stateVersion = "24.05";
};
}