mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53: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
30 lines
530 B
Nix
30 lines
530 B
Nix
{
|
|
pkgs,
|
|
settings,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./librewolf.nix
|
|
./sxhkd.nix
|
|
./theme.nix
|
|
./picom.nix
|
|
./spicetify.nix
|
|
./neovim
|
|
];
|
|
xsession.numlock.enable = true;
|
|
home = {
|
|
homeDirectory = "/home/${settings.username}";
|
|
stateVersion = settings.version;
|
|
file = {
|
|
".background-image".source = ../images/nix-stars.png;
|
|
".config" = {
|
|
source = ./config;
|
|
recursive = true;
|
|
};
|
|
".dwm" = {
|
|
source = ./dwm;
|
|
recursive = true;
|
|
};
|
|
};
|
|
};
|
|
}
|