Recreated nix files

This commit is contained in:
2026-03-03 16:46:44 +01:00
parent 33db8c4533
commit 3bfdbaae21
3 changed files with 320 additions and 317 deletions
+306 -305
View File
File diff suppressed because it is too large Load Diff
+7 -6
View File
@@ -705,12 +705,13 @@ We also add a devshell that makes editing this repository easier in emacs.
imports = [ ./start_script.nix ];
})
# Hyprland configuratie
({ config, pkgs, inputs, ... }: {
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
})
hyprland.nixosModules.default
({ config, pkgs, inputs, ... }: {
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
})
<<flake-emacs-module>>
<<flake-config-module>>
<<flake-home-module>>
+7 -6
View File
@@ -49,12 +49,13 @@
imports = [ ./start_script.nix ];
})
# Hyprland configuratie
({ config, pkgs, inputs, ... }: {
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
})
hyprland.nixosModules.default
({ config, pkgs, inputs, ... }: {
wayland.windowManager.hyprland = {
enable = true;
package = inputs.hyprland.packages.${pkgs.system}.hyprland;
};
})
({ lib, ... }: {
nixpkgs.overlays = [ emacs-overlay.overlays.default ];
})