1
Fork 0
mirror of https://github.com/RGBCube/superfreq synced 2025-07-28 01:17:45 +00:00

treewide: finish renaming to Watt

This commit is contained in:
diniamo 2025-06-06 14:59:22 +02:00
parent da07011b02
commit 5a197951d9
14 changed files with 132 additions and 132 deletions

View file

@ -14,16 +14,16 @@
});
in {
overlays = {
superfreq = final: _: {
superfreq = final.callPackage ./nix/package.nix {};
watt = final: _: {
watt = final.callPackage ./nix/package.nix {};
};
default = self.overlays.superfreq;
default = self.overlays.watt;
};
packages =
nixpkgs.lib.mapAttrs (system: pkgs: {
inherit (pkgs) superfreq;
default = self.packages.${system}.superfreq;
inherit (pkgs) watt;
default = self.packages.${system}.watt;
})
pkgsForEach;
@ -34,8 +34,8 @@
pkgsForEach;
nixosModules = {
superfreq = import ./nix/module.nix inputs;
default = self.nixosModules.superfreq;
watt = import ./nix/module.nix inputs;
default = self.nixosModules.watt;
};
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);