mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
20 lines
369 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|