Compare commits

...

2 Commits

Author SHA1 Message Date
cf8b239031
nullbox: add drive 2023-12-30 19:14:49 -05:00
8a0ed4ecda
slab: add external drive 2023-12-30 19:10:36 -05:00
2 changed files with 11 additions and 0 deletions

View File

@ -6,6 +6,12 @@
{ config, lib, pkgs, ... }:
{
fileSystems."/ntfs" = {
fsType = "ntfs-3g";
device = "/dev/disk/by-uuid/6AC23F0FC23EDF4F";
};
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix

View File

@ -8,6 +8,11 @@
{
# nix.settings.experimental-features = ["nix-command" "flakes" ];
fileSystems."ntfs" = {
fsType = "ntfs-3g";
device = "/dev/disk/by-uuid/028A49020517BEA9";
};
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix