mirror of
https://github.com/nix-community/home-manager.git
synced 2025-04-13 15:57:47 +00:00
15 lines
268 B
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
|
|
'';
|
|
};
|
|
}
|