nixos-config/hardware-configuration/air.nix
Kiana Sheibani fb7b45f98d
feat!: change machine hostnames
Instead of merely naming my systems "laptop", "desktop", etc. (boring),
I now have them named after Aristotelian elements (cool).

This also gives me an excuse to refactor my flake file.
2024-10-15 03:25:56 -04:00

10 lines
199 B
Nix

{ config, lib, pkgs, ... }:
{
fileSystems."/" =
{ device = "/dev/disk/by-uuid/bd2fe7f4-b0e8-40b3-8da3-68f56dd49fab";
fsType = "ext4";
};
nix.settings.max-jobs = lib.mkDefault 3;
}