jungle/configuration.nix

62 lines
1.7 KiB
Nix
Raw Normal View History

2023-03-31 18:27:25 +02:00
{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./boot.nix
./fs.nix
./gitlab-runner.nix
2023-04-05 17:00:01 +02:00
./monitoring.nix
2023-03-31 18:27:25 +02:00
./net.nix
2023-04-06 13:57:32 +02:00
./nfs.nix
./overlays.nix
2023-04-03 12:51:44 +02:00
./slurm.nix
2023-03-31 18:27:25 +02:00
./ssh.nix
./users.nix
2023-04-05 17:04:42 +02:00
<agenix/modules/age.nix>
2023-03-31 18:27:25 +02:00
];
systemd.services."serial-getty@ttyS0" = {
enable = true;
wantedBy = [ "getty.target" ];
serviceConfig.Restart = "always";
};
time.timeZone = "Europe/Madrid";
2023-04-03 12:51:44 +02:00
i18n.defaultLocale = "en_DK.UTF-8";
2023-03-31 18:27:25 +02:00
environment.systemPackages = with pkgs; [
2023-04-03 12:51:44 +02:00
vim wget git htop tmux pciutils tcpdump ripgrep nix-index nixos-option
2023-04-11 20:36:54 +02:00
nix-diff ipmitool freeipmi ethtool lm_sensors
2023-04-05 17:04:42 +02:00
(pkgs.callPackage <agenix/pkgs/agenix.nix> {})
2023-03-31 18:27:25 +02:00
];
2023-04-11 20:36:54 +02:00
environment.variables = {
EDITOR = "vim";
VISUAL = "vim";
};
2023-03-31 18:27:25 +02:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.sandbox = "relaxed";
2023-04-03 12:51:44 +02:00
nix.gc.automatic = true;
2023-04-11 21:21:22 +02:00
nix.gc.dates = "weekly";
2023-04-03 12:51:44 +02:00
programs.zsh.enable = true;
programs.zsh.histSize = 100000;
2023-03-31 18:27:25 +02:00
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
system.copySystemConfiguration = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
}