From 3dbfd3e49f0a8da54f72d1f574eb8a3545937d84 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Mon, 9 Oct 2023 11:35:35 +0200 Subject: [PATCH] refactor --- hosts/yodaTab/configuration.nix | 7 +------ hosts/yodaYoga/host-specific.nix | 4 ++-- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/hosts/yodaTab/configuration.nix b/hosts/yodaTab/configuration.nix index 2a8d4f8..d63fbcc 100644 --- a/hosts/yodaTab/configuration.nix +++ b/hosts/yodaTab/configuration.nix @@ -68,14 +68,9 @@ in boot.initrd.luks.devices."512gb".allowDiscards = true; yoda.btrfsFileSystems = ["/"]; #yoda.btrfsMounts = yoda.btrfsFileSystems; + fileSystems."/mnt/512gb".options = [ "noatime" "commit=60" ]; # Ext4 boot.kernelParams = []; boot.kernelPackages = pkgs.linuxPackages_latest; - - # TODO: For "/" this cfg resides in base.nix - fileSystems = { - # Ext4 not BTRFS - "/mnt/512gb".options = [ "noatime" "commit=60" ]; - }; } diff --git a/hosts/yodaYoga/host-specific.nix b/hosts/yodaYoga/host-specific.nix index 7b2903c..d2faf29 100644 --- a/hosts/yodaYoga/host-specific.nix +++ b/hosts/yodaYoga/host-specific.nix @@ -3,8 +3,8 @@ { users.users.yoda = { packages = with pkgs; [ - # TODO: Is git required for home-manager "builtins.fetchGit" - git + # Is git required for home-manager "builtins.fetchGit"? + #git ]; };