7 lines
269 B
Nix
7 lines
269 B
Nix
|
# Custom packages, that can be defined similarly to ones from nixpkgs
|
||
|
# You can build them using 'nix build .#example'
|
||
|
pkgs: {
|
||
|
sddm-sugar-candy-theme = pkgs.callPackage ./sddm-sugar-candy.nix { };
|
||
|
wallpaper_changer = pkgs.callPackage ./wallpaper_changer.nix { };
|
||
|
}
|