Recreated nix files

This commit is contained in:
2026-03-03 16:48:21 +01:00
parent 3bfdbaae21
commit 2d1862cf58
3 changed files with 308 additions and 305 deletions
+302 -301
View File
File diff suppressed because it is too large Load Diff
+3 -2
View File
@@ -707,11 +707,12 @@ We also add a devshell that makes editing this repository easier in emacs.
# Hyprland configuratie # Hyprland configuratie
hyprland.nixosModules.default hyprland.nixosModules.default
({ config, pkgs, inputs, ... }: { ({ config, pkgs, inputs, ... }: {
wayland.windowManager.hyprland = { programs.hyprland = {
enable = true; enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland; package = hyprland.packages.${pkgs.system}.hyprland;
}; };
}) })
})
<<flake-emacs-module>> <<flake-emacs-module>>
<<flake-config-module>> <<flake-config-module>>
<<flake-home-module>> <<flake-home-module>>
+3 -2
View File
@@ -51,11 +51,12 @@
# Hyprland configuratie # Hyprland configuratie
hyprland.nixosModules.default hyprland.nixosModules.default
({ config, pkgs, inputs, ... }: { ({ config, pkgs, inputs, ... }: {
wayland.windowManager.hyprland = { programs.hyprland = {
enable = true; enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland; package = hyprland.packages.${pkgs.system}.hyprland;
}; };
}) })
})
({ lib, ... }: { ({ lib, ... }: {
nixpkgs.overlays = [ emacs-overlay.overlays.default ]; nixpkgs.overlays = [ emacs-overlay.overlays.default ];
}) })