12 lines
188 B
Nix
12 lines
188 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../modules/home-manager/base.nix
|
|
];
|
|
|
|
home.username = "henrov";
|
|
home.homeDirectory = "/home/henrov";
|
|
home.stateVersion = "25.05";
|
|
}
|