diff --git a/henrovnix_ok/README.org b/henrovnix_ok/README.org index a129691ec..7d3a28ef1 100755 --- a/henrovnix_ok/README.org +++ b/henrovnix_ok/README.org @@ -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"; }; <> } @@ -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; + }; <> <> <>