hosts/dunamis/configuration.nix: simplify

hosts/dunamis/users/user/home-configuration.nix: simplify
hosts/dunamis/users.nix: simplify
modules/nixos/desktop/plasma.nix: simplify

Signed-off-by: unexplrd <unexplrd@linerds.us>
This commit is contained in:
2025-03-30 15:22:47 +03:00
parent 99b62d5194
commit 0b99f0dbd3
4 changed files with 7 additions and 21 deletions

View File

@ -1,4 +1,5 @@
{
lib,
inputs,
osConfig,
...
@ -10,10 +11,7 @@
./programs.nix
./flatpak.nix
];
home = {
inherit (osConfig.system) stateVersion;
sessionPath = ["$HOME/.local/bin"];
};
desktop.niri.enable = true;
inherit (osConfig) desktop;
home.stateVersion = osConfig.system.stateVersion;
home.sessionPath = ["$HOME/.local/bin"];
}