From b7aa15adc4c1e9b76fd9cf5306ad618a2110c764 Mon Sep 17 00:00:00 2001 From: tom barrett Date: Sat, 21 Sep 2024 18:41:58 +0200 Subject: update everything, add some new packages --- configuration.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index e5bd3b5..0081e23 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,29 +1,24 @@ -{ - config, - pkgs, - ... -}: { +{pkgs, ...}: { imports = [./hardware-configuration.nix]; nix.settings = { experimental-features = ["nix-command" "flakes"]; auto-optimise-store = true; }; - - boot.loader.grub.device = "/dev/sda"; + boot.loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; time.timeZone = "Europe/Berlin"; i18n.defaultLocale = "en_US.UTF-8"; - networking = { hostName = "hostname"; networkmanager.enable = true; }; - users.users.tom = { isNormalUser = true; extraGroups = ["wheel" "networkmanager" "video"]; shell = pkgs.zsh; }; - programs = { slock.enable = true; zsh = { @@ -47,6 +42,6 @@ displayManager.startx.enable = true; }; }; - system.stateVersion = "23.11"; + system.stateVersion = "24.05"; zramSwap.enable = true; } -- cgit v1.2.3