solaire: add neovim, fix repeating code
This commit is contained in:
parent
7c4198a58a
commit
402926b78b
1 changed files with 11 additions and 7 deletions
|
@ -1,6 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
];
|
];
|
||||||
|
@ -40,9 +38,15 @@
|
||||||
};
|
};
|
||||||
wantedBy = ["multi-user.target"];
|
wantedBy = ["multi-user.target"];
|
||||||
};
|
};
|
||||||
modules.nvidia.enable = true;
|
modules = {
|
||||||
modules.gaming.enable = true;
|
nvidia.enable = true;
|
||||||
modules.pipewire.latencyFix.enable = true;
|
gaming.enable = true;
|
||||||
|
pipewire = {
|
||||||
|
enable = true;
|
||||||
|
latencyFix.enable = true;
|
||||||
|
};
|
||||||
|
neovim.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
stylix.image = ../../wallpapers/lucy-edgerunners-wallpaper.jpg;
|
stylix.image = ../../wallpapers/lucy-edgerunners-wallpaper.jpg;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue