mirror of
https://github.com/nix-community/home-manager
synced 2024-12-18 07:49:48 +01:00
16 lines
258 B
Nix
16 lines
258 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.fnott = {
|
||
|
enable = true;
|
||
|
package = pkgs.writeScriptBin "dummy-fnott" "";
|
||
|
settings = { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-files/.config/fnott
|
||
|
'';
|
||
|
};
|
||
|
}
|