hosts/dunamis/sops.nix: fix w/ statix hosts/dunamis/users/user/home-configuration.nix: fix w/ statix hosts/eldrid/users/user/home-configuration.nix: fix w/ statix modules/home/desktop/gnome/default.nix: fix w/ statix modules/home/desktop/hyprland/default.nix: fix w/ statix modules/home/desktop/niri/default.nix: add swayosd, move bar to the bottom, fix w/ statix modules/nixos/system/security/basic.nix: fix w/ statix Signed-off-by: unexplrd <unexplrd@linerds.us>
20 lines
339 B
Nix
20 lines
339 B
Nix
{
|
|
inputs,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
imports = with inputs; [
|
|
nix-index-database.hmModules.nix-index
|
|
self.homeModules.desktop
|
|
self.homeModules.programs
|
|
./programs.nix
|
|
./flatpak.nix
|
|
];
|
|
home = {
|
|
inherit (osConfig.system) stateVersion;
|
|
sessionPath = ["$HOME/.local/bin"];
|
|
};
|
|
|
|
desktop.niri.enable = true;
|
|
}
|