9 lines
128 B
Nix
9 lines
128 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nmt.script = ''
|
||
|
userConf=home-files/.config/systemd/user.conf
|
||
|
assertPathNotExists $userConf
|
||
|
'';
|
||
|
}
|