29 lines
410 B
Nix
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?
|
|
}
|