Files
nix-dotfiles-v2/home/root.nix
T

34 lines
442 B
Nix

{
pkgs,
lib,
inputs,
...
}:
{
imports = [
./sshconfig.nix
./atuin.nix
./git.nix
./bash.nix
./opencode.nix
./nixvim.nix
inputs.sops-nix.homeManagerModules.sops
./sops.nix
];
programs.nix-index = {
enableBashIntegration = true;
enable = true;
};
home.packages = with pkgs; [
comma
];
home.username = "root";
home.homeDirectory = "/root";
home.stateVersion = "25.05";
}