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 ]; };