diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index 99d6650..9b3eaab 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -32,6 +32,21 @@ in hash = "sha256-/bSolCta8GCZ4lP0u5NVqYQ9Y3ZooYCNdTwORNvR7M0="; }}/src/catppuccin-macchiato-grub-theme/"; # useOSProber = true; + extraEntries = + '' + menuentry 'Veracrypt Boot Manager' --class windows --class os $menuentry_id_option 'osprober-efi-7C85-2DFB' { + insmod part_gpt + insmod fat + search --no-floppy --fs-uuid --set=root 7C85-2DFB + chainloader /EFI/VeraCrypt/DcsBoot.efi + } + menuentry 'Windows Boot Manager' --class windows --class os $menuentry_id_option 'osprober-efi-7C85-2DFB' { + insmod part_gpt + insmod fat + search --no-floppy --fs-uuid --set=root 7C85-2DFB + chainloader /EFI/Microsoft/Boot/bootmgfw.efi + } + ''; }; @@ -219,6 +234,8 @@ in programs.wireshark.enable = true; programs.wireshark.package = pkgs.wireshark; + programs.ladybird.enable = true; + # fish programs.fish = { enable = true; @@ -399,9 +416,9 @@ in # programs.mtr.enable = true; programs.gnupg.agent = { enable = true; - # enableSSHSupport = true; + enableSSHSupport = true; }; - programs.ssh.startAgent = true; + programs.ssh.startAgent = false; zramSwap = { enable = true; @@ -440,8 +457,6 @@ in enable = true; }; - services.logind.lidSwitchExternalPower = "lock"; - hardware.bluetooth.enable = true; hardware.bluetooth.powerOnBoot = true; diff --git a/hosts/laptop/hardware-configuration.nix b/hosts/laptop/hardware-configuration.nix index ac0f1af..ba6a15e 100644 --- a/hosts/laptop/hardware-configuration.nix +++ b/hosts/laptop/hardware-configuration.nix @@ -13,7 +13,7 @@ in [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "ahci" "nvme" "usbhid" "uas" "usb_storage" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "ahci" "nvme" "usbhid" "uas" "usb_storage" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ "dm-snapshot" ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ];