20 lines
528 B
Nix
20 lines
528 B
Nix
{ inputs, pkgs, ... }:
|
|
let
|
|
|
|
in
|
|
{
|
|
imports = [
|
|
./settings.nix
|
|
./runner.nix
|
|
];
|
|
wayland.windowManager.hyprland = {
|
|
enable = true;
|
|
# set the flake package
|
|
# settings = { };
|
|
systemd.variables = ["--all"];
|
|
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
|
|
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
|
|
};
|
|
programs.foot.enable = true;
|
|
}
|