10 lines
211 B
Nix
10 lines
211 B
Nix
{ config, pkgs, username, ... }:
|
|
{
|
|
home.username = username;
|
|
home.homeDirectory = "/home/" + username;
|
|
|
|
home.stateVersion = "21.11";
|
|
|
|
imports = [ ./shell ./wayland ./xdg.nix ./tools.nix ./email.nix ];
|
|
}
|