mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-07 22:06:51 +01:00
use self instead of inputs
This commit is contained in:
parent
6d2057acd5
commit
dcb34a132f
1 changed files with 9 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, prismlauncher, nur, inputs, ... }:
|
{ pkgs, prismlauncher, nur, self, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
@ -11,13 +11,13 @@
|
||||||
(self: super: {
|
(self: super: {
|
||||||
|
|
||||||
tela-icon-theme = super.tela-icon-theme.overrideAttrs (old: {
|
tela-icon-theme = super.tela-icon-theme.overrideAttrs (old: {
|
||||||
src = inputs.tela-icon-theme;
|
src = self.inputs.tela-icon-theme;
|
||||||
});
|
});
|
||||||
|
|
||||||
prismlauncher = super.prismlauncher.overrideAttrs (old: {
|
prismlauncher = super.prismlauncher.overrideAttrs (old: {
|
||||||
patches = (old.patches or []) ++ [
|
patches = (old.patches or []) ++ [
|
||||||
inputs.prism-game-options-patch
|
self.inputs.prism-game-options-patch
|
||||||
inputs.prism-ftb-patch
|
self.inputs.prism-ftb-patch
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -43,5 +43,10 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home-manager = {
|
||||||
|
useGlobalPkgs = true;
|
||||||
|
useUserPackages = true;
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue