mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 23:21:02 +01:00
12 lines
350 B
Nix
12 lines
350 B
Nix
{
|
|
services.glance.enable = true;
|
|
|
|
nmt.script = ''
|
|
configFile=home-files/.config/glance/glance.yml
|
|
serviceFile=home-files/.config/systemd/user/glance.service
|
|
serviceFile=$(normalizeStorePaths $serviceFile)
|
|
|
|
assertFileContent $configFile ${./glance-default-config.yml}
|
|
assertFileContent $serviceFile ${./glance.service}
|
|
'';
|
|
}
|