Add credits

This commit is contained in:
DashieTM 2024-11-16 16:46:32 +01:00
parent 5ada5903ef
commit 10e362af18
3 changed files with 11 additions and 1 deletions

View file

@ -153,7 +153,7 @@ nixosConfigurations =
# Installation # Installation
You can find a custom ISO on my NextCloud server: [Link](https://cloud.dashie.org/s/z7G3zS9SXeEt2ER). You can find a custom ISO on my NextCloud server: [Link](https://cloud.dashie.org/s/z7G3zS9SXeEt2ERD).
With this, you will receive the example config in /iso/example alongside the gnome desktop environment, With this, you will receive the example config in /iso/example alongside the gnome desktop environment,
as well as a few tools like gnome-disks, neovim, vscodium, a browser etc. as well as a few tools like gnome-disks, neovim, vscodium, a browser etc.
@ -199,3 +199,9 @@ For package lists, please check the individual modules, as the lists can be long
- mime: Mime type configuration - mime: Mime type configuration
- xkb: Keyboard layout configuration - xkb: Keyboard layout configuration
- scripts: Various preconfigured scripts with the ability to add more - scripts: Various preconfigured scripts with the ability to add more
# Credits
- [Fufexan]( https://github.com/fufexan) for the xdg-mime config:
- [Catppuccin]( https://github.com/catppuccin) for base16 colors
- [Danth]( https://github.com/danth) for providing a base for the nix docs

View file

@ -18,6 +18,7 @@
Hyprspace = { Hyprspace = {
url = "github:KZDKM/Hyprspace"; url = "github:KZDKM/Hyprspace";
inputs.hyprland.follows = "hyprland";
}; };
nur.url = "github:nix-community/nur"; nur.url = "github:nix-community/nur";

View file

@ -19,6 +19,9 @@
config = lib.mkIf config.mods.hyprland.hyprlock.enable ( config = lib.mkIf config.mods.hyprland.hyprlock.enable (
lib.optionalAttrs (options ? xdg.configFile) { lib.optionalAttrs (options ? xdg.configFile) {
stylix.targets.hyprlock = {
enable = false;
};
home.packages = with pkgs; [ hyprlock ]; home.packages = with pkgs; [ hyprlock ];
programs.hyprlock = lib.mkIf config.mods.hyprland.hyprlock.enable { programs.hyprlock = lib.mkIf config.mods.hyprland.hyprlock.enable {
enable = true; enable = true;