16 lines
340 B
Nix
16 lines
340 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
# Home-Manager Manual
|
||
|
# https://nix-community.github.io/home-manager/index.html
|
||
|
|
||
|
# Home-Manager Options Search
|
||
|
# https://mipmip.github.io/home-manager-option-search/
|
||
|
|
||
|
home-manager.users.root = {
|
||
|
home.stateVersion = "23.05";
|
||
|
imports = [
|
||
|
./dconf.nix
|
||
|
../../common/dotfiles/git.nix
|
||
|
];
|
||
|
};
|
||
|
}
|