feat: a bunch of changes i forgot to commit

This commit is contained in:
Artur Manuel 2024-11-25 21:04:18 +00:00
commit 8141140de9
21 changed files with 2871 additions and 186 deletions

View file

@ -1,6 +1,16 @@
{inputs, ...}: {
flake.overlays.default = final: prev: {
fairfax = final.callPackage ./derivations/fairfax.nix {};
nicotine-plus = final.callPackage ./derivations/nicotine-plus.nix {};
rose-pine-gtk-theme = prev.rose-pine-gtk-theme.overrideAttrs (prevAttrs: {
version = "master";
src = prev.fetchFromGitHub {
owner = "rose-pine";
repo = "gtk";
rev = "master";
hash = "sha256-vCWs+TOVURl18EdbJr5QAHfB+JX9lYJ3TPO6IklKeFE=";
};
});
};
perSystem = {
pkgs,
@ -15,7 +25,7 @@
};
packages = {
inherit (pkgs) fairfax;
inherit (pkgs) fairfax nicotine-plus rose-pine-gtk-theme;
};
};
}