mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
switch to neovim as a pager added parrot and mining modules deleted amd module moved the rest of vfio configuration to vfio.nix moved git from home-manager to system configuration
17 lines
319 B
Nix
17 lines
319 B
Nix
{settings, ...}: {
|
|
imports = [
|
|
./theme.nix
|
|
./neovim
|
|
];
|
|
home = {
|
|
username = "root";
|
|
homeDirectory = "/root";
|
|
stateVersion = settings.version;
|
|
file = {
|
|
".config/neofetch/config.conf" = {
|
|
source = ./config/neofetch/config.conf;
|
|
recursive = false;
|
|
};
|
|
};
|
|
};
|
|
}
|