From 3d19ae9d263966c35596afc01d49c76ae9107921 Mon Sep 17 00:00:00 2001 From: notohh Date: Sun, 14 May 2023 02:01:41 -0400 Subject: [PATCH] sakura: update hardware --- hosts/sakura/default.nix | 2 +- hosts/sakura/hardware-configuration.nix | 50 ++++++++++++------------- 2 files changed, 25 insertions(+), 27 deletions(-) diff --git a/hosts/sakura/default.nix b/hosts/sakura/default.nix index 880cdc9..9438769 100644 --- a/hosts/sakura/default.nix +++ b/hosts/sakura/default.nix @@ -6,7 +6,6 @@ imports = [ ./hardware-configuration.nix ../../modules - ../../modules/services ]; boot.loader = { @@ -17,6 +16,7 @@ useOSProber = false; }; }; + networking = { hostName = "sakura"; }; diff --git a/hosts/sakura/hardware-configuration.nix b/hosts/sakura/hardware-configuration.nix index 8826e96..760eacb 100644 --- a/hosts/sakura/hardware-configuration.nix +++ b/hosts/sakura/hardware-configuration.nix @@ -1,33 +1,31 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ -# and may be overwritten by future invocations. Please make changes -# to /etc/nixos/configuration.nix instead. -{ config, lib, pkgs, modulesPath, ... }: - { - imports = - [ (modulesPath + "/profiles/qemu-guest.nix") - ]; + config, + lib, + pkgs, + modulesPath, + ... +}: { + imports = [ + (modulesPath + "/profiles/qemu-guest.nix") + ]; - boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ ]; - boot.extraModulePackages = [ ]; + boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod"]; + boot.initrd.kernelModules = []; + boot.kernelModules = []; + boot.extraModulePackages = []; - fileSystems."/" = - { device = "/dev/disk/by-uuid/db3e4722-35a6-44fb-8e4d-a75166b845cb"; - fsType = "ext4"; - }; - - swapDevices = - [ { device = "/dev/disk/by-uuid/c5afba13-f1af-4e7f-994b-f565c52d92fc"; } - ]; - - # 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..useDHCP`. + fileSystems."/" = { + device = "/dev/disk/by-uuid/db3e4722-35a6-44fb-8e4d-a75166b845cb"; + fsType = "ext4"; + }; + fileSystems."/home/notoh/docker/stash/data" = { + device = "192.168.1.71:/volume1/stash"; + fsType = "nfs"; + }; + swapDevices = [ + {device = "/dev/disk/by-uuid/c5afba13-f1af-4e7f-994b-f565c52d92fc";} + ]; networking.useDHCP = lib.mkDefault true; - # networking.interfaces.ens18.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; }