infrastructure/nixos/hosts/hades/lucy/configuration.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

2023-05-03 13:00:34 +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-05-03 14:31:38 +02:00
{ pkgs, ... }:
2023-05-03 13:00:34 +02:00
{
2023-05-03 13:09:19 +02:00
imports = [ ./hardware-configuration.nix ];
2023-05-03 13:00:34 +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).
system.stateVersion = "23.05"; # Did you read the comment?
# Additional packages
2023-05-03 14:31:38 +02:00
environment.systemPackages = with pkgs; [
gcc
2023-05-04 08:32:01 +02:00
go
2023-05-03 14:31:38 +02:00
jq
nuclei
rustup
];
2023-05-03 13:00:34 +02:00
networking.firewall.allowedTCPPorts = [ ];
2023-05-03 13:09:19 +02:00
2023-05-03 14:08:38 +02:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2023-05-03 14:31:38 +02:00
boot.loader.efi.efiSysMountPoint = "/boot";
2023-05-03 14:08:38 +02:00
2023-05-03 14:31:38 +02:00
virtualisation.docker.enable = true;
2023-05-03 14:08:38 +02:00
2023-05-03 14:31:38 +02:00
users.extraUsers.laura.extraGroups = [ "wheel" "docker" ];
users.extraUsers.victor.extraGroups = [ "docker" ];
2023-05-03 13:00:34 +02:00
}