blob: e89c41856d717949de4684881c2d990eacad1a5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ config, lib, pkgs, inputs, ...}:
{
imports = [
../../modules
];
home.username = "administratro";
home.homeDirectory = "/home/administrator";
programs.home-manager.enable = true;
home.packages = with pkgs; [
];
nvf.enable = true;
git.enable = true;
zsh.enable = true;
home.stateVersion = "24.11";
}
|