Merge pull request #9 from gytic/path

fix(paths): use relative paths instead of inputs.self
This commit is contained in:
gytic 2025-07-28 22:24:48 +02:00 committed by GitHub
commit e2ff8dded5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ in {
wallpaper = lib.mkOption {
description = "The wallpaper to use";
type = lib.types.path;
default = "${inputs.self}/Ressources/Images/Wallpapers/Wallpaper-1.png";
default = ../Ressources/Images/Wallpapers/Wallpaper-1.png;
};
};

View file

@ -1,14 +1,14 @@
{ inputs, config, lib, pkgs, ... }: let
cfg = config.nixos95;
theme_dir = "${inputs.self}/Ressources/Themes";
root = ../.;
baseTheme = {
name = "Chicago95";
package = pkgs.callPackage "${theme_dir}/Chicago95/chicago95.nix" { };
package = pkgs.callPackage "${root}/Ressources/Themes/Chicago95/chicago95.nix" { };
};
iconTheme = {
name = "Win95_plus";
package = pkgs.callPackage "${theme_dir}/Win95_plus/win95_plus.nix" { };
package = pkgs.callPackage "${root}/Ressources/Themes/Win95_plus/win95_plus.nix" { };
};
in lib.mkIf cfg.enable {