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