mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-06 04:56:34 +05:30
21 lines
573 B
Nix
Executable File
21 lines
573 B
Nix
Executable File
{inputs, ...}: {
|
|
additions = final: _prev: import ../pkgs {pkgs = final;};
|
|
|
|
modifications = final: prev: {
|
|
awesome = inputs.nixpkgs-f2k.packages.${prev.system}.awesome-git;
|
|
};
|
|
|
|
# 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;
|
|
}
|