nixos/home-manager/root.nix
2023-01-23 22:51:41 -05:00

20 lines
369 B
Nix

{ config, pkgs, ... }:
{
imports = [
./theme.nix
./git.nix
./neovim
];
programs.home-manager.enable = true;
home = {
username = "root";
homeDirectory = "/root";
stateVersion = "23.05";
file = {
".config/neofetch/config.conf" = {
source = ./config/neofetch/config.conf;
recursive = false;
};
};
};
}