summaryrefslogtreecommitdiff
path: root/configuration.nix
blob: 137e2f415f8e1a9740848004a33afd42a556b870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{config, lib, pkgs, ...}: {
  imports = [
    ./hardware-configuration.nix
    ./minecraft.nix
    ./options.nix
    ./git.nix
    ./ssh.nix
  ];
  boot.loader.systemd-boot.enable = true;
  boot.loader.efi.canTouchEfiVariables = true;

  networking.networkmanager.enable = true;

  users.users.kassouni = {
    extraGroups = [ "wheel" ];
    isNormalUser = true;
    openssh.authorizedKeys.keys = config.my.adminKeys;
  };

  system.stateVersion = "26.05";
}