Compartmentalizing stuffs

This commit is contained in:
2026-05-03 02:21:30 -05:00
parent 827c5c0925
commit 091c9c5e85
3 changed files with 11 additions and 1 deletions
+2 -1
View File
@@ -10,8 +10,9 @@
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
./configuration.nix ./configuration.nix
./hosts/laptop-nixos-1/hostname.nix ./hosts/laptop-nixos-1/configuration.nix
./hosts/laptop-nixos-1/hardware-configuration.nix ./hosts/laptop-nixos-1/hardware-configuration.nix
./swap/16G.nix
]; ];
}; };
}; };
@@ -1,3 +1,4 @@
{ {
networking.hostName = "laptop-nixos-1"; networking.hostName = "laptop-nixos-1";
} }
+8
View File
@@ -0,0 +1,8 @@
{
swapDevices = [
{
device = "/swap-16";
size = 16 * 1024;
}
];
}