Added hyprmanager github

This commit is contained in:
2026-03-03 16:38:36 +01:00
parent ef22971b2e
commit 27efa46949
+11 -4
View File
@@ -664,6 +664,7 @@ The inputs for my system's configuration are very simple
url = "github:youwen5/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "github:hyprwm/Hyprland";
};
<<flake-outputs>>
}
@@ -698,10 +699,16 @@ We also add a devshell that makes editing this repository easier in emacs.
name = machine;
value = lib.nixosSystem {
modules = [
# Start_script.nix
({ lib, config, pkgs, ... }: {
imports = [ ./start_script.nix ];
})
# Start_script.nix
({ lib, config, pkgs, ... }: {
imports = [ ./start_script.nix ];
})
# Hyprland configuratie
({ config, pkgs, ... }: {
wayland.windowManager.hyprland = {
enable = true;
package = hyprland.packages.${pkgs.system}.hyprland;
};
<<flake-emacs-module>>
<<flake-config-module>>
<<flake-home-module>>