Adjusted configs

This commit is contained in:
Luke Else 2025-03-21 14:21:58 +00:00
parent 91d1c698cf
commit 729d5eaefe
3 changed files with 35 additions and 13 deletions

View File

@ -12,7 +12,7 @@
initrd = {
luks.devices = {
"root" = {
device = "/dev/sda1"; # Change to your actual encrypted partition
device = "/dev/sda1"; # Encrypted root partition
preLVM = true;
allowDiscards = true; # Enable if using an SSD with TRIM support
};
@ -20,34 +20,36 @@
systemd.enable = true; # Required for LUKS support
availableKernelModules = [ "dm-crypt" "dm-mod" "ext4" ]; # Required for LUKS support
};
kernelParams = [ "root=/dev/mapper/root" "cryptdevice=/dev/sda1:root" ]; # Required for LUKS support
# Kernel parameters for root and cryptsetup
kernelParams = [ "root=/dev/mapper/root" "cryptdevice=/dev/sda1:root" ];
};
# File systems
fileSystems."/" = {
device = "/dev/sda1"; # LUKS unlocked device
device = "/dev/mapper/root"; # LUKS unlocked device
fsType = "ext4";
};
# EFI partition mount (usually /boot or /boot/efi)
fileSystems."/boot" = {
device = "/dev/sda2"; # Change to your actual EFI partition
device = "/dev/sda2"; # EFI partition
fsType = "vfat";
options = [ "nofail" "defaults" ];
};
swapDevices = [{ device = "/swapfile"; size = 4096; }];
# Swap file (4GB)
swapDevices = [
{
device = "/swapfile";
size = 4096; # 4GB
}
];
# Locales and timezone
# Locale and timezone
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_GB.UTF-8";
# UFW Firewall
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 ]; # Allow SSH
};
# Enable SSH
services.openssh = {
enable = true;
@ -56,4 +58,16 @@
PasswordAuthentication = false;
};
};
# Enable Docker
virtualisation.docker.enable = true;
# PipeWire for audio
services.pipewire = {
enable = true;
pulse.enable = true;
};
# Bluetooth
services.blueman.enable = true;
}

View File

@ -22,6 +22,10 @@
spotify-player
bitwarden
freshfetch # Fetch utility
cryptsetup # LUKS support
git
cryptsetup
parted
vim
htop
];
}

View File

@ -10,6 +10,10 @@
};
};
};
firewall = {
enable = true;
allowedTCPPorts = [ 22 ]; # Allow SSH
};
useDHCP = true;
};
}