{ config, pkgs, ... }: { imports = [ ./interception-tools.nix ]; nix.settings.experimental-features = [ "nix-command" "flakes" ]; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; networking.networkmanager.enable = true; time.timeZone = "Europe/Berlin"; sound.enable = true; hardware.pulseaudio.enable = true; users.users.till = { isNormalUser = true; extraGroups = [ "wheel" "networkmanager" ]; packages = with pkgs; []; shell = pkgs.fish; }; environment.systemPackages = with pkgs; [ neovim wget git foot wofi pipewire ]; fonts.fonts = with pkgs; [ jetbrains-mono ]; services = { dbus.enable = true; openssh.enable = true; printing.enable = true; }; system.stateVersion = "22.11"; }