massive lsp evaluated rewrite

This commit is contained in:
2024-06-08 23:54:40 -06:00
parent 6ec6eb239a
commit fd340effd9
46 changed files with 227 additions and 242 deletions

View File

@@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: {
{ pkgs, ... }: {
imports = [
# <agenix/modules/age.nix>
./hardware-configuration.nix
@@ -46,7 +46,6 @@
ffmpeg4discord.enable = true;
};
};
networking = {
hostName = "workstation";
firewall = let
@@ -64,7 +63,6 @@
allowedUDPPortRanges = openPortRanges;
};
};
nix = let
featuresList = [
"nixos-test"
@@ -83,12 +81,10 @@
system-features = featuresList;
};
};
nixpkgs.config = {
allowUnfree = true;
permittedInsecurePackages = [ ];
};
users = {
groups.nixremote.gid = 555;
users = {
@@ -109,7 +105,6 @@
};
};
};
environment.etc = {
"wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = ''
bluez_monitor.properties = {
@@ -120,7 +115,6 @@
}
'';
};
programs = {
kdeconnect = {
enable = true;
@@ -131,7 +125,6 @@
enableVirtualCamera = true;
};
};
services.resilio = {
deviceName = "chichis";
enable = true;

View File

@@ -48,13 +48,9 @@
device = "/dev/disk/by-uuid/e9618e85-a631-4374-b2a4-22c376d6e41b";
preLVM = true;
};
initrd = {
availableKernelModules =
[ "xhci_pci" "ahci" "usbhid" "nvme" "usb_storage" "sd_mod" ];
kernelModules = [ ];
};
initrd.availableKernelModules =
[ "xhci_pci" "ahci" "usbhid" "nvme" "usb_storage" "sd_mod" ];
};
fileSystems = let
nfsMount = (server: nfsDisk: {
device = "${server}:/${nfsDisk}";