-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.nix
29 lines (23 loc) · 900 Bytes
/
home.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{config, pkgs, inputs, systemSettings, userSettings, themeSettings, ...}:
{
home.username = userSettings.username;
home.homeDirectory = "/home/" + userSettings.username;
programs.home-manager.enable = true;
home.stateVersion = "24.05"; # Please read the comment before changing.
imports = [
# ./user-modules/user-modules.nix
# ./user-modules/sh.nix
# ./user-modules/user-services.nix
# ./user-modules/libraries.nix
# ./user-modules/apps.nix
# ./user-modules/games.nix
# ./user-modules/git.nix
# ./user-modules/containers.nix
# ./user-modules/user.nix
# ----- RICES ----- #
#Sets up the Desktop environment and Customisation
# uncomment one, comment the rest
./rice-modules/default-rice.nix # Default Rice
#./rice-modules/hyprpanel-rice.nix # HyprPanel by
];
}