mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 08:20:43 +00:00
Add blank home-manager config
This commit is contained in:
parent
da5262c60d
commit
e2764cb4cb
12 changed files with 98 additions and 4 deletions
43
home/default.nix
Normal file
43
home/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ config, lib, inputs, self, ... }:
|
||||
let
|
||||
hmConf = config.myOptions.home-manager;
|
||||
username = config.myOptions.system.username;
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
./programs
|
||||
];
|
||||
|
||||
home-manager = lib.mkIf hmConf.enabled {
|
||||
# Use verbose mode for home-manager
|
||||
verbose = true;
|
||||
|
||||
# Should home-manager use the same pkgs as system's pkgs?
|
||||
# If disabled, home-manager will independently evaluate and use
|
||||
# its own set of packages. Note that this could increase disk usage
|
||||
# and it might lead to inconsistencies.
|
||||
useGlobalPkgs = true;
|
||||
|
||||
# Use NixOS user packages (users.users.<name>.packages)
|
||||
# instead of home-manager's own shell init config files to
|
||||
# get packages to install
|
||||
useUserPackages = true;
|
||||
|
||||
# Move existing files to .old suffix rather than exiting with error
|
||||
backupFileExtension = "hm.old";
|
||||
|
||||
# These will be passed to all hm modules
|
||||
extraSpecialArgs = { inherit inputs self; };
|
||||
|
||||
users.${username} = {
|
||||
# Let home-manager manage itself in standalone mode
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home = {
|
||||
inherit username;
|
||||
homeDirectory = "/home/${username}";
|
||||
stateVersion = hmConf.stateVersion;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
6
home/programs/default.nix
Normal file
6
home/programs/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./graphical
|
||||
./terminal
|
||||
];
|
||||
}
|
5
home/programs/graphical/default.nix
Normal file
5
home/programs/graphical/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
_: {
|
||||
imports = [
|
||||
./wms
|
||||
];
|
||||
}
|
5
home/programs/graphical/wms/default.nix
Normal file
5
home/programs/graphical/wms/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
_: {
|
||||
imports = [
|
||||
./hyprland
|
||||
];
|
||||
}
|
3
home/programs/graphical/wms/hyprland/default.nix
Normal file
3
home/programs/graphical/wms/hyprland/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
_: {
|
||||
imports = [ ];
|
||||
}
|
3
home/programs/terminal/default.nix
Normal file
3
home/programs/terminal/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
_: {
|
||||
imports = [ ];
|
||||
}
|
3
home/services/default.nix
Normal file
3
home/services/default.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
_: {
|
||||
imports = [ ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue