From 27efa46949fb06f4121d1ec32ed537b3e0ad7c99 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Tue, 3 Mar 2026 16:38:36 +0100 Subject: [PATCH] Added hyprmanager github --- henrovnix_ok/README.org | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) 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; + }; <> <> <>