1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-04-13 15:57:47 +00:00
home-manager/tests/integration/standalone/alice-home-dotprofile.nix

15 lines
268 B
Nix

{ config, pkgs, ... }:
{
home.username = "alice";
home.homeDirectory = "/home/alice";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
# Write .profile
home.file = {
".profile".text = ''
echo sourcing dotprofile
'';
};
}