nixos-config/home-manager/default.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 ];
}