feat(grfn/system): Add ogopogo
This is my new work desktop https://en.wikipedia.org/wiki/Ogopogo Change-Id: I198d8757ff85eec00a303b990efdd2658cbc3e6a Reviewed-on: https://cl.tvl.fyi/c/depot/+/5963 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
parent
482e1b201c
commit
7ac9b76c3c
5 changed files with 151 additions and 0 deletions
|
|
@ -22,6 +22,10 @@ rec {
|
|||
};
|
||||
})).system;
|
||||
|
||||
ogopogo = import ./machines/ogopogo.nix;
|
||||
|
||||
ogopogoSystem = (depot.ops.nixos.nixosFor ogopogo).system;
|
||||
|
||||
yeren = import ./machines/yeren.nix;
|
||||
|
||||
yerenSystem = (depot.ops.nixos.nixosFor yeren).system;
|
||||
|
|
@ -31,6 +35,7 @@ rec {
|
|||
meta.ci.targets = [
|
||||
"mugwumpSystem"
|
||||
"roswellSystem"
|
||||
"ogopogoSystem"
|
||||
"yerenSystem"
|
||||
|
||||
"iso"
|
||||
|
|
|
|||
73
users/grfn/system/system/machines/ogopogo.nix
Normal file
73
users/grfn/system/system/machines/ogopogo.nix
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{ depot, modulesPath, config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
../modules/common.nix
|
||||
../modules/xserver.nix
|
||||
../modules/fonts.nix
|
||||
../modules/sound.nix
|
||||
# ../modules/tvl.nix
|
||||
../modules/development.nix
|
||||
../modules/work/kolide.nix
|
||||
];
|
||||
|
||||
networking.hostName = "ogopogo";
|
||||
|
||||
system.stateVersion = "22.11";
|
||||
|
||||
boot = {
|
||||
initrd = {
|
||||
availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||||
kernelModules = [ ];
|
||||
};
|
||||
|
||||
kernelPackages = pkgs.linuxPackages_5_15;
|
||||
|
||||
kernelModules = [ "kvm-amd" ];
|
||||
blacklistedKernelModules = [ ];
|
||||
extraModulePackages = [ ];
|
||||
|
||||
kernel.sysctl = {
|
||||
"kernel.perf_event_paranoid" = -1;
|
||||
};
|
||||
};
|
||||
|
||||
fileSystems = {
|
||||
"/" = {
|
||||
device = "/dev/disk/by-uuid/d67506cf-7039-484d-97c0-00321a7858dc";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/AE73-03A3";
|
||||
fsType = "vfat";
|
||||
};
|
||||
};
|
||||
|
||||
swapDevices = [{
|
||||
device = "/dev/disk/by-uuid/8bdae7c8-5160-491f-8cd0-4f0a79acadf9";
|
||||
}];
|
||||
|
||||
services.earlyoom = {
|
||||
enable = true;
|
||||
freeMemThreshold = 5;
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
hardware.enableAllFirmware = true;
|
||||
|
||||
hardware.pulseaudio.extraConfig = ''
|
||||
load-module module-remap-source source_name=KompleteAudio6_1 source_properties=device.description=KompleteAudio6Input1 master=alsa_input.usb-Native_Instruments_Komplete_Audio_6_458E0FFD-00.multichannel-input remix=no channels=1 master_channel_map=front-left channel_map=mono
|
||||
load-module module-remap-source source_name=KompleteAudio6_2 source_properties=device.description=KompleteAudio6Input2 master=alsa_input.usb-Native_Instruments_Komplete_Audio_6_458E0FFD-00.multichannel-input remix=no channels=1 master_channel_map=front-right channel_map=mono
|
||||
load-module module-remap-sink sink_name=KompleteAudio6_12 sink_properties=device.description=KompleteAudio6_12 remix=no master=alsa_output.usb-Native_Instruments_Komplete_Audio_6_458E0FFD-00.analog-surround-21 channels=2 master_channel_map=front-left,front-right channel_map=front-left,front-right
|
||||
'';
|
||||
|
||||
services.fwupd.enable = true;
|
||||
|
||||
services.tailscale.enable = true;
|
||||
|
||||
# Nvidia
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
hardware.opengl.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue