Files
nixos-blueprint/hosts/dunamis/users/user/home-configuration.nix
2025-03-24 14:18:13 +02:00

20 lines
346 B
Nix

{inputs, ...}: {
imports = with inputs; [
nix-index-database.hmModules.nix-index
self.homeModules.desktop
self.homeModules.programs
./programs.nix
./flatpak.nix
# ./sops.nix
];
desktop = {
niri.enable = true;
};
home = {
stateVersion = "25.05";
sessionPath = [
"$HOME/.local/bin"
];
};
}