mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
0304f0f58b
This module adds basic support for configuration specializations. These allow the user to build multiple alternative configurations that should be part of the same generation.
18 lines
440 B
Nix
18 lines
440 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
home.file.testfile.text = "not special";
|
|
specialization.test.configuration = {
|
|
home.file.testfile.text = "very special";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/testfile
|
|
assertFileContains home-files/testfile "not special"
|
|
|
|
assertFileExists specialization/test/home-files/testfile
|
|
assertFileContains specialization/test/home-files/testfile "not special"
|
|
'';
|
|
}
|