summaryrefslogtreecommitdiff
path: root/machines/picast
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2025-05-18 12:08:25 +0000
committerDevin Finlinson <devin.finlinson@pm.me>2025-05-18 12:08:25 +0000
commiteb1f2774f4ab15e8f2ec99150eeb3f342d133ea2 (patch)
tree73957e3c27f6d0652d7f7a293d38a28052bff42f /machines/picast
parentf47acf99fd0817a335742f7a6863faa56d3ba6f0 (diff)
parent7d7f5905769c488d2129b2ec0ade6451f0765d84 (diff)
Merge branch 'master' of ssh://bosco:/srv/git/.flake
Diffstat (limited to 'machines/picast')
-rw-r--r--machines/picast/default.nix6
-rw-r--r--machines/picast/hardware-configuration.nix9
2 files changed, 11 insertions, 4 deletions
diff --git a/machines/picast/default.nix b/machines/picast/default.nix
index 827045f..ff10ad5 100644
--- a/machines/picast/default.nix
+++ b/machines/picast/default.nix
@@ -28,7 +28,11 @@
# networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone.
+<<<<<<< HEAD
time.timeZone = "US/Mountain";
+=======
+ time.timeZone = "America/Denver";
+>>>>>>> 7d7f5905769c488d2129b2ec0ade6451f0765d84
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
@@ -69,7 +73,7 @@
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
- # programs.mtr.enable = true;
+ programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
diff --git a/machines/picast/hardware-configuration.nix b/machines/picast/hardware-configuration.nix
index 3f13493..78601ad 100644
--- a/machines/picast/hardware-configuration.nix
+++ b/machines/picast/hardware-configuration.nix
@@ -1,3 +1,5 @@
+# hardware-configuration.nix
+
# 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.
@@ -8,14 +10,15 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
- boot.initrd.availableKernelModules = [ ];
+ boot.initrd.availableKernelModules = [ "xhci_pci" "usbhid" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ ];
boot.extraModulePackages = [ ];
fileSystems."/" =
- { device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
+ { device = "/dev/disk/by-label/NIXOS_SD"; # this is important!
fsType = "ext4";
+ options = [ "noatime" ];
};
swapDevices = [ ];
@@ -25,7 +28,7 @@
# 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.enu1u1.useDHCP = lib.mkDefault true;
+ # networking.interfaces.end0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";