1
0
Fork 0

moar trim

This commit is contained in:
Pratham Patel 2024-01-21 12:05:41 +05:30
parent cafda73b71
commit 65d85ca259
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 0 additions and 19 deletions

19
iso.nix
View File

@ -8,10 +8,6 @@
boot = {
# use the latest Linux kernel
kernelPackages = pkgs.linuxPackages_latest;
kernelParams = [
"copytoram"
"nomodeset"
];
# Needed for https://github.com/NixOS/nixpkgs/issues/58959
supportedFilesystems = lib.mkForce [
"ext4"
@ -21,21 +17,6 @@
];
};
networking = {
networkmanager.enable = true;
wireless.enable = false;
nameservers = [
"1.1.1.1"
"1.0.0.1"
"8.8.8.8"
"8.8.4.4"
];
firewall = {
enable = true;
allowPing = true;
};
};
time = {
timeZone = "Asia/Kolkata";
hardwareClockInLocalTime = true;