55 lines
1.0 KiB
Nix
Raw Permalink Normal View History

2025-01-01 21:40:43 +01:00
{pkgs, ...}:
{
nix.settings.experimental-features = ["nix-command" "flakes"];
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "de_DE.UTF-8";
LC_IDENTIFICATION = "de_DE.UTF-8";
LC_MEASUREMENT = "de_DE.UTF-8";
LC_MONETARY = "de_DE.UTF-8";
LC_NAME = "de_DE.UTF-8";
LC_NUMERIC = "de_DE.UTF-8";
LC_PAPER = "de_DE.UTF-8";
LC_TELEPHONE = "de_DE.UTF-8";
LC_TIME = "de_DE.UTF-8";
};
console.keyMap = "de-latin1-nodeadkeys";
2025-01-01 22:02:12 +01:00
nixpkgs.config.allowUnfree = true;
2025-01-01 21:40:43 +01:00
environment.systemPackages = with pkgs; [
bind
cmake
curl
gcc
git
gnumake
nmap
tmux
tree
unzip
wget
];
hardware.keyboard.zsa.enable = true;
programs = {
fish.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
};
services = {
2025-01-01 22:02:12 +01:00
fwupd.enable = true;
2025-01-01 21:40:43 +01:00
resolved.enable = true;
tailscale.enable = true;
2025-01-04 18:19:10 +01:00
tailscale.useRoutingFeatures = "client";
2025-01-01 21:40:43 +01:00
};
}