Compare commits

..

No commits in common. "9e36f371351ca0e04691b57c5026deb82dbb5be9" and "f4d38281e4d334093ebd87dabd07145a22b626da" have entirely different histories.

2 changed files with 11 additions and 34 deletions

View file

@ -19,7 +19,6 @@
git git
gnupg gnupg
imv imv
keepassxc
mdbook mdbook
mpv mpv
neovim neovim

View file

@ -1,6 +1,5 @@
# Do not modify this file! It was generated by nixos-generate-config # TODO: Replace with actual hardware-configuration.nix from anvil machine
# and may be overwritten by future invocations. Please make changes # Run on anvil: nixos-generate-config --show-hardware-config
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }: { config, lib, pkgs, modulesPath, ... }:
{ {
@ -8,35 +7,14 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "uas" "usb_storage" "sd_mod" ]; # Placeholder filesystem - replace with actual values from anvil
boot.initrd.kernelModules = [ ]; fileSystems."/" = {
boot.kernelModules = [ "kvm-intel" ]; device = "/dev/disk/by-uuid/PLACEHOLDER";
boot.extraModulePackages = [ ]; fsType = "ext4";
};
fileSystems."/" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/378fb925-59d8-4128-827e-ccf3b95dc1cd"; device = "/dev/disk/by-uuid/PLACEHOLDER";
fsType = "ext4"; fsType = "vfat";
}; };
boot.initrd.luks.devices."luks-c5329739-af6f-4b31-b4e6-62e3045e1789".device = "/dev/disk/by-uuid/c5329739-af6f-4b31-b4e6-62e3045e1789";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/AFB2-F027";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/3e515b22-e746-4df6-b92e-d734ec250571"; }
];
# 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.wlp0s20f3.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} }