Add swap file and minor cleanup
This commit is contained in:
parent
41562a4c5d
commit
4f9079395d
|
@ -4,6 +4,7 @@
|
|||
# Kernel configuration
|
||||
boot = {
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
# TODO Add resume_offset
|
||||
kernelParams = [ "zfs.zfs_arc_max=536870912" ];
|
||||
kernelModules = [ "i915" "acpi_call" ];
|
||||
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
|
||||
|
@ -64,6 +65,10 @@
|
|||
# Enable the TLP daemon
|
||||
services.tlp.enable = true;
|
||||
|
||||
# Add a swap file and resume from it
|
||||
swapDevices = [ { device = "/swap"; size = 8192; } ];
|
||||
boot.resumeDevice = "/swap";
|
||||
|
||||
# Import other configuration modules
|
||||
imports = [
|
||||
./modules/software.nix
|
||||
|
|
|
@ -9,18 +9,16 @@
|
|||
# Set hostname and hostid
|
||||
networking = {
|
||||
hostName = "panacea";
|
||||
hostId = "";
|
||||
hostId = "a434d9ed230d";
|
||||
wireless = {
|
||||
enable = true;
|
||||
}
|
||||
};
|
||||
|
||||
# Enable zeroconf
|
||||
services.avahi = {
|
||||
enable = true;
|
||||
nssmdns = true;
|
||||
publish = {
|
||||
enable = true;
|
||||
userServices = true;
|
||||
};
|
||||
reflector = true;
|
||||
};
|
||||
|
||||
# Wireguard setup
|
||||
|
|
|
@ -2,14 +2,8 @@
|
|||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Development
|
||||
git direnv lorri
|
||||
# Monitoring
|
||||
htop
|
||||
# Text editors
|
||||
neovim emacs
|
||||
# Terminals
|
||||
kitty tmux tmuxp
|
||||
# Password management
|
||||
pass-wayland passff-host gitAndTools.pass-git-helper
|
||||
# Browsers
|
||||
|
|
Loading…
Reference in New Issue