This commit is contained in:
Daniel Langbein 2023-10-09 11:35:35 +02:00
parent 452caf0f22
commit 3dbfd3e49f
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 3 additions and 8 deletions

View File

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

View File

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