feat\!: major cleanup
This commit is contained in:
parent
b971a645e3
commit
210c463d79
93 changed files with 34 additions and 4340 deletions
|
|
@ -12,12 +12,6 @@
|
|||
];
|
||||
|
||||
bchmnn = {
|
||||
git = {
|
||||
signing = {
|
||||
key = "0x7753026D577922A6";
|
||||
};
|
||||
};
|
||||
|
||||
collections = {
|
||||
cli-utils.enable = true;
|
||||
};
|
||||
|
|
@ -38,4 +32,6 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
documentation.nixos.enable = false;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,45 +0,0 @@
|
|||
{ ... }@inputs:
|
||||
{
|
||||
|
||||
imports = [
|
||||
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
||||
inputs.nixos-hardware.nixosModules.common-pc
|
||||
inputs.nixos-hardware.nixosModules.common-pc-ssd
|
||||
inputs.nixos-hardware.nixosModules.common-gpu-nvidia-nonprime
|
||||
./hardware.nix
|
||||
../../modules
|
||||
];
|
||||
|
||||
networking.hostName = "IROH";
|
||||
|
||||
bchmnn = {
|
||||
gui = {
|
||||
enable = true;
|
||||
greeter.enable = false;
|
||||
flavour = [ "i3" ];
|
||||
};
|
||||
nvidia.enable = true;
|
||||
audio = {
|
||||
enable = true;
|
||||
pipewire-wine-fix.enable = true;
|
||||
};
|
||||
bluetooth.enable = false;
|
||||
printing.enable = true;
|
||||
|
||||
collections = {
|
||||
cli-utils.enable = true;
|
||||
profiling.enable = true;
|
||||
development.enable = true;
|
||||
vpn.enable = true;
|
||||
virtualisation.enable = true;
|
||||
games.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
flare-solvarr.enable = true;
|
||||
jackett.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
{ config
|
||||
, lib
|
||||
, modulesPath
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"xhci_pci"
|
||||
"ahci"
|
||||
"nvme"
|
||||
"usbhid"
|
||||
"usb_storage"
|
||||
"sd_mod"
|
||||
];
|
||||
boot.kernelModules = [
|
||||
"kvm-intel"
|
||||
"nvidia"
|
||||
"nvidia_modeset"
|
||||
"nvidia_uvm"
|
||||
"nvidia_drm"
|
||||
];
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.extraModprobeConfig = ''
|
||||
options nvidia NVreg_RegistryDwords="PowerMizerEnable=0x1; PerfLevelSrc=0x2222; PowerMizerLevel=0x3; PowerMizerDefault=0x3; PowerMizerDefaultAC=0x3"
|
||||
'';
|
||||
|
||||
boot.kernelParams = [
|
||||
"resume_offset=533760"
|
||||
"nvidia_drm.modeset=1"
|
||||
"nvidia.NVreg_PreserveVideoMemoryAllocations=1"
|
||||
];
|
||||
|
||||
boot.resumeDevice = "/dev/disk/by-label/ROOT";
|
||||
|
||||
# hardware.nvidia.package = pkgs.unstable.linuxPackages.nvidiaPackages.stable;
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@" ];
|
||||
};
|
||||
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@nix" ];
|
||||
};
|
||||
|
||||
fileSystems."/swap" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@swap" ];
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-label/EFI";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
fileSystems."/home" = {
|
||||
device = "/dev/disk/by-label/HOME";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@" ];
|
||||
};
|
||||
|
||||
swapDevices = [{ device = "/swap/swapfile"; }];
|
||||
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, pkgs, modulesPath, ... }: {
|
||||
{ lib, pkgs, modulesPath, ... }@inputs: {
|
||||
imports = [ (modulesPath + "/profiles/minimal.nix") ];
|
||||
|
||||
# Installing a new system within the nspawn means that the /sbin/init script
|
||||
|
|
@ -63,6 +63,8 @@
|
|||
# stuff
|
||||
nixfmt-rfc-style
|
||||
|
||||
inputs.agenix.packages.x86_64-linux.default
|
||||
|
||||
];
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
|
|
|
|||
|
|
@ -1,50 +0,0 @@
|
|||
{ ... }@inputs:
|
||||
{
|
||||
|
||||
imports = [
|
||||
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t430
|
||||
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
||||
inputs.nixos-hardware.nixosModules.common-pc-laptop-acpi_call
|
||||
inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
|
||||
./hardware.nix
|
||||
../../modules
|
||||
];
|
||||
|
||||
networking.hostName = "T430";
|
||||
|
||||
bchmnn = {
|
||||
gui = {
|
||||
enable = true;
|
||||
greeter.enable = false;
|
||||
flavour = [ "sway" ];
|
||||
};
|
||||
nvidia.enable = false;
|
||||
audio = {
|
||||
enable = true;
|
||||
pipewire-wine-fix.enable = false;
|
||||
};
|
||||
bluetooth.enable = true;
|
||||
printing.enable = true;
|
||||
|
||||
collections = {
|
||||
cli-utils.enable = true;
|
||||
profiling.enable = true;
|
||||
development.enable = true;
|
||||
vpn = {
|
||||
enable = true;
|
||||
dryborg.enable = true;
|
||||
};
|
||||
virtualisation.enable = true;
|
||||
games.enable = true;
|
||||
};
|
||||
|
||||
services = {
|
||||
flare-solvarr.enable = true;
|
||||
jackett.enable = true;
|
||||
syncthing.enable = true;
|
||||
};
|
||||
|
||||
bsprak.enable = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
@ -1,75 +0,0 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
modulesPath,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"xhci_pci"
|
||||
"ehci_pci"
|
||||
"ahci"
|
||||
"usb_storage"
|
||||
"sd_mod"
|
||||
"sr_mod"
|
||||
"sdhci_pci"
|
||||
];
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
boot.kernelParams = [ "resume_offset=18883840" ];
|
||||
boot.resumeDevice = "/dev/disk/by-label/ROOT";
|
||||
boot.initrd.luks.devices."cryptlvm".device = "/dev/disk/by-uuid/b7a904b2-cceb-47fc-832a-701e386a95db";
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"subvol=@"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/home" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"subvol=@home"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"subvol=@nix"
|
||||
"compress=zstd"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/swap" = {
|
||||
device = "/dev/disk/by-label/ROOT";
|
||||
fsType = "btrfs";
|
||||
options = [
|
||||
"subvol=@swap"
|
||||
"noatime"
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-label/EFI";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices = [ { device = "/swap/swapfile"; } ];
|
||||
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue