Switch to deploy configuration
This commit is contained in:
parent
0c40f2cd09
commit
994708ec16
2 changed files with 17 additions and 14 deletions
21
flake.nix
21
flake.nix
|
|
@ -45,24 +45,27 @@
|
|||
};
|
||||
|
||||
overlays = [
|
||||
# Packages
|
||||
# (_: _: { stable = import nixpkgs { inherit config overlays; }; unstable = import nixpkgs-u { inherit config overlays; }; })
|
||||
# Combine stable and unstable packages
|
||||
(_: _: {
|
||||
stable = import nixpkgs { inherit config overlays; };
|
||||
unstable = import nixpkgs-u { inherit config overlays; };
|
||||
})
|
||||
|
||||
# Nix rice
|
||||
nix-rice.overlays.default
|
||||
(import ./rice.nix)
|
||||
|
||||
# Flakes packages
|
||||
(final: _: {
|
||||
clipedit = final.callPackage ./custom/clipedit { };
|
||||
update-background = final.callPackage ./custom/update-background {
|
||||
(self: _: {
|
||||
clipedit = self.callPackage ./custom/clipedit { };
|
||||
update-background = self.callPackage ./custom/update-background {
|
||||
backgrounds_directory = "$HOME/Immagini/Sfondi/1080+/1440+";
|
||||
};
|
||||
lockscreen = final.callPackage ./custom/lockscreen {
|
||||
palette = final.rice.colorPalette;
|
||||
font = final.rice.font.normal;
|
||||
lockscreen = self.callPackage ./custom/lockscreen {
|
||||
palette = self.rice.colorPalette;
|
||||
font = self.rice.font.normal;
|
||||
};
|
||||
sddm-theme-clairvoyance = final.callPackage ./custom/sddm-theme-clairvoyance {
|
||||
sddm-theme-clairvoyance = self.callPackage ./custom/sddm-theme-clairvoyance {
|
||||
wallpaper = ./wallpapers/comfy_waves.jpg;
|
||||
};
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue