mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
8a175a8913
Fixes tests that are affected by <https://github.com/NixOS/nixpkgs/pull/333744>.
25 lines
543 B
Nix
25 lines
543 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
systemd.user.settings.Manager = {
|
|
LogLevel = "debug";
|
|
DefaultCPUAccounting = true;
|
|
DefaultEnvironment = {
|
|
TEST = "abc";
|
|
PATH = "/bin:/sbin:/some where";
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
userConf=home-files/.config/systemd/user.conf
|
|
assertFileExists $userConf
|
|
assertFileContent $userConf ${
|
|
pkgs.writeText "expected" ''
|
|
[Manager]
|
|
DefaultCPUAccounting=true
|
|
DefaultEnvironment=PATH='/bin:/sbin:/some where' TEST=abc
|
|
LogLevel=debug
|
|
''
|
|
}
|
|
'';
|
|
}
|