mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 13:06:35 +05:30
26 lines
672 B
Nix
Executable File
26 lines
672 B
Nix
Executable File
{inputs, ...}: {
|
|
additions = final: _prev: import ../pkgs {pkgs = final;};
|
|
|
|
modifications = final: prev: {
|
|
awesome = inputs.nixpkgs-f2k.packages.${prev.system}.awesome-git;
|
|
|
|
discord = prev.discord.override {
|
|
withOpenASAR = true;
|
|
withVencord = true;
|
|
};
|
|
};
|
|
|
|
# When applied, the unstable nixpkgs set (declared in the flake inputs) will
|
|
# be accessible through 'pkgs.unstable'
|
|
unstable-packages = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
system = final.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
nur = inputs.nur.overlay;
|
|
|
|
nix-vscode-extensions = inputs.nix-vscode-extensions.overlays.default;
|
|
}
|