generation 541 25.11.20250714.62e0f05

This commit is contained in:
2025-11-12 20:33:01 -05:00
parent fb98f0e01a
commit fc352f3d29
3 changed files with 24 additions and 18 deletions

View File

@@ -120,6 +120,8 @@ in {
yq yq
semgrep semgrep
tectonic tectonic
electrum
feather
# texlive.combined.scheme-full # texlive.combined.scheme-full
# security # security

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
newmac=$1 newmac=$1
suod ip link set wlan0 down sudo ip link set wlan0 down
sudo macchanger wlan0 --mac "$1" sudo macchanger wlan0 --mac "$1"
sudo ip link set wlan0 up sudo ip link set wlan0 up

View File

@@ -1,27 +1,31 @@
# 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, ... }:
{ {
imports = config,
[ (modulesPath + "/installer/scan/not-detected.nix") lib,
]; pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.availableKernelModules = ["uhci_hcd" "ehci_pci" "ahci" "usb_storage" "usbhid" "sd_mod"];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [];
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = ["kvm-intel"];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/bb36a123-4dc9-4583-8571-1aa180efb00b"; device = "/dev/disk/by-uuid/bb36a123-4dc9-4583-8571-1aa180efb00b";
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/78565ab8-d7b8-476d-a6e7-46ceda4ee761"; } {device = "/dev/disk/by-uuid/78565ab8-d7b8-476d-a6e7-46ceda4ee761";}
{ device = "/dev/disk/by-uuid/c735b357-c35c-4249-bb0b-23321fe50c3d"; } {device = "/dev/disk/by-uuid/c735b357-c35c-4249-bb0b-23321fe50c3d";}
]; ];
# 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
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's