mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
15 lines
346 B
Nix
15 lines
346 B
Nix
{ inputs, ... }: {
|
|
flake.nixosModules.hyprland-sys-hyprland = { pkgs, ... }: {
|
|
programs.hyprland = {
|
|
enable = true;
|
|
xwayland.enable = true;
|
|
withSystemd = true;
|
|
withUWSM = true;
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
inputs.caelestia-shell.packages.${pkgs.stdenv.hostPlatform.system}.with-cli
|
|
];
|
|
};
|
|
}
|