mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
26 lines
677 B
Nix
26 lines
677 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.xsettingsd = {
|
|
enable = true;
|
|
package = config.lib.test.mkStubPackage { };
|
|
settings = {
|
|
"Net/ThemeName" = "Numix";
|
|
"Xft/Antialias" = true;
|
|
"Xft/Hinting" = true;
|
|
"Xft/RGBA" = "rgb";
|
|
};
|
|
};
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/xsettingsd.service
|
|
|
|
assertFileExists $serviceFile
|
|
assertFileRegex $serviceFile 'ExecStart=.*/bin/xsettingsd.*'
|
|
|
|
assertFileExists ${config.services.xsettingsd.configFile}
|
|
assertFileContent ${config.services.xsettingsd.configFile} \
|
|
${./basic-configuration.conf}
|
|
'';
|
|
};
|
|
}
|