nix-conf/home/default.nix
2024-12-13 22:30:05 +08:00

22 lines
348 B
Nix

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