nix/hosts/desktop/home.nix

23 lines
309 B
Nix
Raw Normal View History

2024-03-12 21:24:29 +01:00
{ pkgs, ... }:
{
imports = [
2024-06-20 13:41:57 +02:00
# GUI
../../modules/home/gui/common
# CLI
../../modules/home/cli/common
2024-03-12 21:24:29 +01:00
];
home = {
username = "xeovalyte";
homeDirectory = "/home/xeovalyte";
};
home.packages = with pkgs; [
2024-06-20 12:56:01 +02:00
unstable.prismlauncher
2024-03-12 21:24:29 +01:00
];
2024-06-02 12:10:28 +02:00
home.stateVersion = "24.05";
2024-03-12 21:24:29 +01:00
}