Add temporary extra hosts to nixos-desktop for imaging

This commit is contained in:
iFargle 2023-12-31 18:01:54 +09:00
parent 055ba1ec02
commit 9b16da0b41
2 changed files with 8 additions and 0 deletions

View file

@ -71,6 +71,7 @@ nix develop -c /etc/nixos/git/docs/setup.sh
* [ ] Find a way to have magit save login credentials
## Desktop / GUI
* [ ] Syncthing + Logseq
* [ ] vscodium and user-config.js file?
* extensionsFromVscodeMarketplace
* https://github.com/jasoncrevier/nixos-config/blob/main/home-manager/home.nix

View file

@ -8,6 +8,13 @@
# steam, nvidia-x11, etc
nixpkgs.config.allowUnfree = true;
# Temporary, before the machine is on Headscale.
# Remove when finished.
networking.extraHosts = ''
192.168.1.210 code.sysctl.io
192.168.1.210 pass.sysctl.io
'';
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" "acpi_call" ];