From 41b40e570b6132793fcfa125160dcc37a97b57c7 Mon Sep 17 00:00:00 2001 From: ISnortPennies Date: Wed, 1 Feb 2023 17:44:52 -0500 Subject: [PATCH] changed laptop filesystem from uuid to device --- flake.lock | 6 +++--- systems/laptop.nix | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index f2a4002..ec8b245 100644 --- a/flake.lock +++ b/flake.lock @@ -110,11 +110,11 @@ }, "nixpkgs-master": { "locked": { - "lastModified": 1675284429, - "narHash": "sha256-OVUyaSB9BKERTEn+LYqxx9Wudy7pwy1p2/nlURUIt60=", + "lastModified": 1675290703, + "narHash": "sha256-AW1h5+r03CcT/rdrwcLV4u+eHOB6lTOVFliimeXoBgs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "31968e86eddf260716458ee9ede65691f6e1987f", + "rev": "c3627eb52a127d19a6693e93b5191a37b36038a5", "type": "github" }, "original": { diff --git a/systems/laptop.nix b/systems/laptop.nix index b266113..b547955 100644 --- a/systems/laptop.nix +++ b/systems/laptop.nix @@ -40,11 +40,11 @@ }; fileSystems = { "/" = { - device = "/dev/disk/by-uuid/c67796b3-d502-47db-8d0e-48f30bc91041"; + device = "/dev/nvme0n1p2"; fsType = "ext4"; }; "/boot" = { - device = "/dev/disk/by-uuid/AD02-10EA"; + device = "/dev/nvme0n1p1"; fsType = "vfat"; }; };