update notas

This commit is contained in:
shibazaki 2025-08-04 18:49:04 +02:00
parent fcda92dfa8
commit 7a415455c9
3 changed files with 10 additions and 5 deletions

View File

@ -8,7 +8,7 @@
src = fetchurl {
url = "https://github.com/zen-browser/desktop/releases/latest/download/zen-x86_64.AppImage";
sha256 = "sha256-kS4nuYgfCFhwctFKdf76EKLCQL7+oZdHw82iLNSTCs4=";
sha256 = "sha256-S3ebA1sXfrY3hXHlLetCiH9bUS1QAjJgj914O2EQB/0=";
};
appimageContents = appimageTools.extract {

View File

@ -8,29 +8,32 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "sdhci_pci" ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/1e45e24e-c1a4-45e5-854d-cc7391b9b058";
{ device = "/dev/disk/by-uuid/c19f3c61-5659-445b-8f11-d33db9f7bd02";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/5C4C-5AB5";
{ device = "/dev/disk/by-uuid/692B-CE82";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices = [ ];
swapDevices =
[ { device = "/dev/disk/by-uuid/97f534e0-7105-4e91-9f6f-c5e91eeb4053"; }
];
# 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
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp8s0f4u1.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp5s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

View File

@ -21,6 +21,8 @@
./../../nixos/home/modules/session-variables.nix
./../../nixos/home/modules/cybersec-tools.nix
./../../nixos/home/imports/waybar.nix
./../../nixos/home/modules/scripts.nix
];
cybersec.enable = true;