nix-conf/home/default.nix
2024-12-29 16:12:18 +08:00

12 lines
268 B
Nix

{ config, pkgs, pkgsUnstable, nix-version, ... }:
{
imports = [ ./user ];
home.username = "danny";
home.homeDirectory = "/home/danny";
home.stateVersion = nix-version;
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
}