This commit is contained in:
fqbn207
2025-01-01 00:57:46 +01:00
parent 8522926471
commit bfce53b9ef
3 changed files with 41 additions and 18 deletions

View File

@ -46,9 +46,6 @@ in
networking = {
hostName = "poggers";
networkmanager.enable = true;
nameservers = [
"192.168.0.125"
];
firewall = {
enable = true;
allowedTCPPorts = [
@ -131,6 +128,8 @@ in
"video"
"dialout"
"plugdev"
"adbusers"
"kvm"
];
};
@ -178,6 +177,10 @@ in
arduino-ide
arduino-language-server
dotnet-sdk
bear
android-tools
android-udev-rules
android-studio-tools
# misc
cava

View File

@ -1,29 +1,48 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports =
[ (modulesPath + "/installer/scan/not-detected.nix")
];
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.availableKernelModules = [
"nvme"
"xhci_pci"
"ahci"
"usb_storage"
"usbhid"
"sd_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/850226f1-be02-42df-bb13-669f364ced4c";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/D3F1-6A1B";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
fileSystems."/" = {
device = "/dev/disk/by-uuid/850226f1-be02-42df-bb13-669f364ced4c";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/D3F1-6A1B";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
fileSystems."/media/STUFF" = {
device = "/dev/disk/by-label/STUFF";
fsType = "ext4";
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View File

@ -29,6 +29,7 @@
bind -n M-Down select-pane -D
set -g status-position top
set status-bg default
set -g status-style "fg=white bg=color237"
'';
};
};