Files
nixos-config/nixos-configurations/shared.nix
2023-07-02 00:50:10 +02:00

24 lines
448 B
Nix

{ ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
time.timeZone = "Europe/Amsterdam";
nixpkgs.config.allowUnfree = true;
networking.networkmanager.enable = true;
virtualisation.docker.enable = true;
users.users.thiloho = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "docker" ];
};
}