mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
16 lines
288 B
Nix
16 lines
288 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
configDir = if pkgs.stdenv.isDarwin then
|
|
"home-files/Library/Application Support"
|
|
else
|
|
"home-files/.config";
|
|
in {
|
|
programs.nheko.enable = true;
|
|
|
|
test.stubs.nheko = { };
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists "${configDir}/nheko/nheko.conf"
|
|
'';
|
|
}
|