mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-24 18:19:01 +00:00
16 lines
259 B
Nix
16 lines
259 B
Nix
{ config, lib, ... }: {
|
|
programs.diceware = {
|
|
enable = true;
|
|
settings.diceware = {
|
|
num = 7;
|
|
specials = 2;
|
|
};
|
|
};
|
|
|
|
test.stubs.diceware = { };
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/diceware/diceware.ini
|
|
'';
|
|
}
|