nixos-config/home-manager/default.nix

10 lines
211 B
Nix
Raw Normal View History

2024-06-13 16:28:44 -04:00
{ config, pkgs, username, ... }:
2022-01-06 21:14:02 -05:00
{
home.username = username;
home.homeDirectory = "/home/" + username;
2022-09-24 23:30:38 -04:00
home.stateVersion = "21.11";
2024-05-11 19:19:22 -04:00
imports = [ ./shell ./wayland ./xdg.nix ./tools.nix ./email.nix ];
2022-01-06 21:14:02 -05:00
}