Files
nicksOs/hosts/hermes/configuration.nix
T
2026-07-26 12:26:38 +02:00

29 lines
410 B
Nix

{
pkgs,
inputs,
...
}: {
imports = [
];
nix.settings.experimental-features = ["nix-command" "flakes"];
nixpkgs.config.allowUnfree = true;
time.timeZone = "Europe/Berlin";
programs = {
zsh = {
enable = true;
};
git = {
enable = true;
};
};
age.identityPaths = [
"/etc/ssh/id_ed25519"
];
system.stateVersion = "26.05"; # Did you read the comment?
}