mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
13 lines
255 B
Nix
13 lines
255 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
configDir =
|
|
if pkgs.stdenv.isDarwin then "home-files/Library/Application Support" else "home-files/.config";
|
|
in
|
|
{
|
|
programs.nheko.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertPathNotExists "${configDir}/nheko/nheko.conf"
|
|
'';
|
|
}
|