nixos/extra/clean.nix

14 lines
237 B
Nix
Raw Normal View History

2020-11-16 21:14:46 +01:00
{ config, lib, pkgs, ... }:
2022-02-07 12:02:17 +01:00
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
2020-11-16 21:14:46 +01:00
{
environment.systemPackages = with pkgs; [
baobab
2022-02-07 12:02:17 +01:00
dupeguru
unstable.findimagedupes
2020-11-16 21:14:46 +01:00
jdupes
kondo
];
}