From 1904113f012501395203d2e49c6afc1e182dd548 Mon Sep 17 00:00:00 2001 From: coolneng Date: Fri, 8 Nov 2019 14:36:12 +0100 Subject: [PATCH] fixup! Change zfs mount property to legacy --- configuration.nix | 9 +-------- modules/datasync.nix | 2 +- .../hardware-configuration.nix | 0 3 files changed, 2 insertions(+), 9 deletions(-) rename hardware-configuration.nix => modules/hardware-configuration.nix (100%) diff --git a/configuration.nix b/configuration.nix index 14fc87a..d759af9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -24,14 +24,6 @@ vim ]; - # File systems configuration for using the installer's partition layout - fileSystems = { - "/" = { - device = "/dev/disk/by-label/NIXOS_SD"; - fsType = "ext4"; - }; - }; - # !!! Adding a swap file is optional, but strongly recommended! swapDevices = [ { device = "/swapfile"; size = 1024; } ]; @@ -106,6 +98,7 @@ ./modules/printing.nix ./modules/networking.nix ./modules/datasync.nix + ./modules/hardware-configuration.nix ]; } diff --git a/modules/datasync.nix b/modules/datasync.nix index 697b603..309e8cf 100644 --- a/modules/datasync.nix +++ b/modules/datasync.nix @@ -1,4 +1,4 @@ -# syncthingthing and Radicale configuration +# Syncthing and Radicale configuration { config, pkgs, lib, ... }: { diff --git a/hardware-configuration.nix b/modules/hardware-configuration.nix similarity index 100% rename from hardware-configuration.nix rename to modules/hardware-configuration.nix