nixos-config/home-manager/default.nix
2024-06-13 16:28:44 -04:00

9 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 ];
}