2023-05-31 10:54:57 +01:00
|
|
|
{...}: let
|
|
|
|
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
|
|
|
in {
|
|
|
|
imports = [(import "${home-manager}/nixos")];
|
|
|
|
home-manager.users.root = {
|
|
|
|
imports = [./env ./ssh ./git];
|
|
|
|
home.username = "root";
|
|
|
|
home.homeDirectory = "/root";
|
|
|
|
home.stateVersion = "22.11";
|
|
|
|
};
|
|
|
|
}
|