Adjusted configs
This commit is contained in:
parent
91d1c698cf
commit
729d5eaefe
@ -12,7 +12,7 @@
|
|||||||
initrd = {
|
initrd = {
|
||||||
luks.devices = {
|
luks.devices = {
|
||||||
"root" = {
|
"root" = {
|
||||||
device = "/dev/sda1"; # Change to your actual encrypted partition
|
device = "/dev/sda1"; # Encrypted root partition
|
||||||
preLVM = true;
|
preLVM = true;
|
||||||
allowDiscards = true; # Enable if using an SSD with TRIM support
|
allowDiscards = true; # Enable if using an SSD with TRIM support
|
||||||
};
|
};
|
||||||
@ -20,34 +20,36 @@
|
|||||||
systemd.enable = true; # Required for LUKS support
|
systemd.enable = true; # Required for LUKS support
|
||||||
availableKernelModules = [ "dm-crypt" "dm-mod" "ext4" ]; # 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
|
# File systems
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/sda1"; # LUKS unlocked device
|
device = "/dev/mapper/root"; # LUKS unlocked device
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
# EFI partition mount (usually /boot or /boot/efi)
|
# EFI partition mount (usually /boot or /boot/efi)
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/sda2"; # Change to your actual EFI partition
|
device = "/dev/sda2"; # EFI partition
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "nofail" "defaults" ];
|
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";
|
time.timeZone = "Europe/London";
|
||||||
i18n.defaultLocale = "en_GB.UTF-8";
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||||||
|
|
||||||
# UFW Firewall
|
|
||||||
networking.firewall = {
|
|
||||||
enable = true;
|
|
||||||
allowedTCPPorts = [ 22 ]; # Allow SSH
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable SSH
|
# Enable SSH
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -56,4 +58,16 @@
|
|||||||
PasswordAuthentication = false;
|
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
|
spotify-player
|
||||||
bitwarden
|
bitwarden
|
||||||
freshfetch # Fetch utility
|
freshfetch # Fetch utility
|
||||||
cryptsetup # LUKS support
|
git
|
||||||
|
cryptsetup
|
||||||
|
parted
|
||||||
|
vim
|
||||||
|
htop
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,10 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
firewall = {
|
||||||
|
enable = true;
|
||||||
|
allowedTCPPorts = [ 22 ]; # Allow SSH
|
||||||
|
};
|
||||||
useDHCP = true;
|
useDHCP = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user