split neovim config

This commit is contained in:
iofq 2023-05-14 13:06:56 -05:00
parent 8fb6118bcd
commit 5df8317a4a
19 changed files with 239 additions and 195 deletions

24
nixos/t14/configuration.nix Executable file
View file

@ -0,0 +1,24 @@
{ pkgs, nixos-hardware, host, ... }:
{
imports =
[
./hardware-configuration.nix
./nano.nix
];
networking.hostName = host.hostName;
environment.systemPackages = with pkgs; [
cryptsetup
];
programs.light.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
pulse.enable = true;
};
hardware.opengl.enable = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
system.stateVersion = "22.11";
}