diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2023-12-16 00:36:13 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2023-12-16 00:36:13 -0700 |
| commit | b71a6fc84c33210ce4b2ccf49e44c0762d853641 (patch) | |
| tree | 10877bf169c5fca31ac943e0a0e72165e6e39ce1 /machines | |
| parent | 73cbae7f5357bf01a7e0bf1d8674a361dae6dabe (diff) | |
doretta has new, better partitions (specifically more boot partition, no more running out)
Diffstat (limited to 'machines')
| -rw-r--r-- | machines/doretta/hardware-configuration.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/machines/doretta/hardware-configuration.nix b/machines/doretta/hardware-configuration.nix index f768a3f..70fb758 100644 --- a/machines/doretta/hardware-configuration.nix +++ b/machines/doretta/hardware-configuration.nix @@ -1,4 +1,4 @@ -# Do not modify this file! It was generated by ‘nixos-generate-config’ +# Do not modxxify 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, ... }: @@ -14,8 +14,14 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/9fb0c7c8-8ee8-48ca-bd3a-3246838d3780"; + { device = "/dev/disk/by-uuid/036e01ab-d0ae-46c3-a9c8-d0e94d83cdde"; fsType = "btrfs"; + options = [ "subvol=@" ]; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/F97F-258C"; + fsType = "vfat"; }; swapDevices = [ ]; |
