feat: some neovim customizaion

This commit is contained in:
dprin 2026-03-28 18:26:22 +01:00
parent e2fab632ef
commit 39643701c8
10 changed files with 263 additions and 66 deletions

View file

@ -1,6 +1,4 @@
{ config, lib, pkgs, ... }:
{
{pkgs, ...}: {
boot.loader.grub = {
enable = true;
device = "/dev/sda";
@ -16,7 +14,7 @@
users.users.prever = {
isNormalUser = true;
extraGroups = [ "wheel" ];
extraGroups = ["wheel"];
packages = with pkgs; [
git
tree
@ -24,27 +22,24 @@
};
environment.systemPackages = with pkgs; [
neovim
wget
];
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 22 80 443 ];
networking.firewall.allowedTCPPorts = [22 80 443];
# networking.firewall.allowedUDPPorts = [ ... ];
nix = {
settings.experimental-features = [ "nix-command" "flakes" ];
settings.experimental-features = ["nix-command" "flakes"];
optimise.automatic = true;
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
};
home-manager.users.prever.home.stateVersion = "25.11";
system.stateVersion = "25.11";
}