infrastructure/nixos/hosts/olympus/bastion/configuration.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

2021-10-13 16:49:41 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2023-12-29 17:35:24 +01:00
{ pkgs, inputs, ... }: {
2021-10-25 12:50:04 +02:00
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
2023-12-29 17:35:24 +01:00
./vms.nix
2021-10-25 12:50:04 +02:00
];
2021-10-13 16:49:41 +02:00
2023-04-24 10:00:56 +02:00
programs.nix-ld.enable = true;
2021-10-13 16:49:41 +02:00
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
2021-10-14 00:04:24 +02:00
boot.loader.grub.device = "/dev/sda";
2021-10-13 16:49:41 +02:00
# 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).
2022-10-08 17:05:22 +02:00
system.stateVersion = "22.11"; # Did you read the comment?
2021-10-14 00:04:24 +02:00
2023-04-24 10:00:56 +02:00
virtualisation.podman.enable = true;
2022-06-12 12:25:46 +02:00
2021-10-14 00:04:24 +02:00
# Additional packages
2023-12-24 12:27:59 +01:00
environment.systemPackages = with pkgs; [ vault ];
2021-11-16 16:28:55 +01:00
2023-12-29 17:35:24 +01:00
networking.useNetworkd = true;
2021-10-19 21:21:42 +02:00
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
};
2021-10-13 16:49:41 +02:00
}