Adjusted configs
This commit is contained in:
parent
91d1c698cf
commit
729d5eaefe
@ -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;
|
||||
}
|
||||
|
@ -22,6 +22,10 @@
|
||||
spotify-player
|
||||
bitwarden
|
||||
freshfetch # Fetch utility
|
||||
cryptsetup # LUKS support
|
||||
git
|
||||
cryptsetup
|
||||
parted
|
||||
vim
|
||||
htop
|
||||
];
|
||||
}
|
||||
|
@ -10,6 +10,10 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [ 22 ]; # Allow SSH
|
||||
};
|
||||
useDHCP = true;
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user