mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
Complete overhaul
This commit is contained in:
commit
d30d11566d
38 changed files with 1373 additions and 0 deletions
26
users/default.nix
Normal file
26
users/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{inputs, ...}: {
|
||||
imports = [inputs.home-manager.nixosModules.home-manager];
|
||||
|
||||
users.mutableUsers = false;
|
||||
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
|
||||
home-manager.sharedModules = [
|
||||
../modules/home
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
home.stateVersion = "23.11";
|
||||
systemd.user.startServices = "sd-switch";
|
||||
|
||||
xdg = {
|
||||
enable = true;
|
||||
|
||||
userDirs = {
|
||||
enable = true;
|
||||
createDirectories = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue