This commit is contained in:
parent
7beb3f3347
commit
4a461cfc8b
2 changed files with 15 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
|||
# your system. Help is available in the configuration.nix(5) man page
|
||||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||||
|
||||
{ config, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./hardware-configuration.nix ];
|
||||
|
@ -16,13 +16,21 @@
|
|||
system.stateVersion = "23.05"; # Did you read the comment?
|
||||
|
||||
# Additional packages
|
||||
environment.systemPackages = with pkgs; [ ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
gcc
|
||||
jq
|
||||
nuclei
|
||||
rustup
|
||||
];
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ ];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||
boot.loader.efi.efiSysMountPoint = "/boot";
|
||||
|
||||
virtualisation.docker.enable = true;
|
||||
|
||||
users.extraUsers.laura.extraGroups = [ "wheel" "docker" ];
|
||||
users.extraUsers.victor.extraGroups = [ "docker" ];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue