This commit is contained in:
Peritia 2026-02-12 15:32:45 +01:00
parent b6b87d5aed
commit 9c72a71585
3546 changed files with 18655 additions and 0 deletions

17
nixosVista/desktop.nix Normal file
View file

@ -0,0 +1,17 @@
{
config,
lib,
pkgs,
...
}: let
cfg = config.nixosVista;
in {
config = lib.mkIf cfg.enable {
programs.hyprland.enable = true;
services.displayManager.sddm = lib.mkIf cfg.displayManager.enable {
enable = true;
wayland.enable = true;
};
};
}