nixos/extra/clean.nix
2022-02-07 12:02:17 +01:00

13 lines
237 B
Nix

{ config, lib, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
baobab
dupeguru
unstable.findimagedupes
jdupes
kondo
];
}