nixos-config/home-manager/default.nix

16 lines
234 B
Nix

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