mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
13 lines
237 B
Nix
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
|
|
];
|
|
}
|