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

View File

@ -1,29 +1,48 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }: {
config,
lib,
pkgs,
modulesPath,
...
}:
{ {
imports = imports = [
[ (modulesPath + "/installer/scan/not-detected.nix") (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.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/850226f1-be02-42df-bb13-669f364ced4c"; device = "/dev/disk/by-uuid/850226f1-be02-42df-bb13-669f364ced4c";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/D3F1-6A1B"; device = "/dev/disk/by-uuid/D3F1-6A1B";
fsType = "vfat"; fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ]; options = [
"fmask=0022"
"dmask=0022"
];
};
fileSystems."/media/STUFF" = {
device = "/dev/disk/by-label/STUFF";
fsType = "ext4";
}; };
swapDevices = [ ]; swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # 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 bind -n M-Down select-pane -D
set -g status-position top set -g status-position top
set status-bg default set status-bg default
set -g status-style "fg=white bg=color237"
''; '';
}; };
}; };