mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
16 lines
294 B
Nix
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";
|
|
};
|
|
};
|
|
}
|