Add hyprland

Add unfree
This commit is contained in:
muon 2024-06-06 20:16:24 +00:00
parent d676358f1a
commit 31ffdc94e8
18 changed files with 185 additions and 44 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, lib, osConfig, ... }:
let
cfg = osConfig.mods.desktop;
in {
imports = [
./hyprland.nix
];
config = lib.mkIf cfg.wayland.enable {
mods.hyprland.enable = true;
};
}