1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/tests/integration/nixos/legacy-profile-management-new-conf.nix
2025-10-26 15:43:53 -05:00

16 lines
294 B
Nix

{
imports = [ ../../../nixos ]; # Import the HM NixOS module.
system.stateVersion = "24.11";
users.users.alice = {
isNormalUser = true;
};
home-manager = {
users.alice = {
home.stateVersion = "24.11";
home.file.test.text = "testfile new profile";
};
};
}