dendritic: rewrote entire config

This commit is contained in:
2026-05-23 20:18:11 +02:00
parent a93284ff80
commit c8ee6d85fe
190 changed files with 6764 additions and 8101 deletions
+18
View File
@@ -0,0 +1,18 @@
{ ... }: {
flake.nixosModule.disk = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
gnome-disk-utility
udiskie
];
};
flake.nixosModule.disk-laptop = { ... }: {
# i found swap necessary when running nixpkgs review
swapDevices = [
{
device = "/swapfile";
size = 16384; # 16 GB
}
];
boot.kernel.sysctl."vm.swappiness" = 10;
};
}