b447282c7a
* feat: add test node and spin up podman/cockpit * dev hack * bug: disable wayland temporarily #52 * feat: add nfs mount to nas * chore: add nas to sshconf * derp * hax * fix: hax * feat: firefox and gnome tweaks * chore: tweak nautilus --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
18 lines
391 B
Nix
18 lines
391 B
Nix
{ inputs
|
|
, ...
|
|
}:
|
|
{
|
|
# deploy-rs overlay
|
|
deploy-rs = inputs.deploy-rs.overlays.default;
|
|
|
|
nur = inputs.nur.overlay;
|
|
|
|
# The unstable nixpkgs set (declared in the flake inputs) will
|
|
# be accessible through 'pkgs.unstable'
|
|
unstable-packages = final: _prev: {
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
inherit (final) system;
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
}
|