mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
17 lines
288 B
Nix
17 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"
|
||
|
'';
|
||
|
}
|