Files
nicksOs/hosts/hermes/configuration.nix
T
2026-07-26 11:51:36 +02:00

63 lines
1.1 KiB
Nix

{
pkgs,
inputs,
...
}: {
imports = [
];
nix.settings.experimental-features = ["nix-command" "flakes"];
nixpkgs.config.allowUnfree = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "Hermes";
networking.networkmanager.enable = true;
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
time.timeZone = "Europe/Berlin";
users.users.nick = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = ["wheel"];
};
programs.zsh = {
enable = true;
};
environment.systemPackages = with pkgs; [
inputs.agenix.packages."${stdenv.hostPlatform.system}".default
neovim
wget
curl
git
fastfetch
rsync
starship
eza
net-tools
alejandra
nixd
yazi
dysk
tmux
btop
];
networking.firewall.enable = false;
networking.nftables.enable = true;
age.identityPaths = [
"/etc/ssh/id_ed25519"
];
system.stateVersion = "26.05"; # Did you read the comment?
}