14 lines
202 B
Nix
14 lines
202 B
Nix
{ ... }:
|
|
{
|
|
home-manager.users.kalle.programs.fd = {
|
|
enable = true;
|
|
extraOptions = [
|
|
"--hidden"
|
|
];
|
|
ignores = [
|
|
".git/"
|
|
"/nix/store"
|
|
".nix-profile"
|
|
];
|
|
};
|
|
}
|