65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./hardware-configuration.nix
|
||
|
../../common/cachix.nix
|
||
|
../../common/generic.nix
|
||
|
../../common/server.nix
|
||
|
../../common/tailscale.nix
|
||
|
];
|
||
|
|
||
|
boot.loader.grub.enable = true;
|
||
|
boot.loader.grub.device = "/dev/sdb";
|
||
|
boot.loader.grub.useOSProber = true;
|
||
|
|
||
|
networking.hostName = "lea";
|
||
|
|
||
|
networking.networkmanager.enable = true;
|
||
|
|
||
|
time.timeZone = "Europe/London";
|
||
|
|
||
|
i18n.defaultLocale = "en_GB.UTF-8";
|
||
|
|
||
|
i18n.extraLocaleSettings = {
|
||
|
LC_ADDRESS = "en_GB.UTF-8";
|
||
|
LC_IDENTIFICATION = "en_GB.UTF-8";
|
||
|
LC_MEASUREMENT = "en_GB.UTF-8";
|
||
|
LC_MONETARY = "en_GB.UTF-8";
|
||
|
LC_NAME = "en_GB.UTF-8";
|
||
|
LC_NUMERIC = "en_GB.UTF-8";
|
||
|
LC_PAPER = "en_GB.UTF-8";
|
||
|
LC_TELEPHONE = "en_GB.UTF-8";
|
||
|
LC_TIME = "en_GB.UTF-8";
|
||
|
};
|
||
|
|
||
|
services.xserver = {
|
||
|
layout = "gb";
|
||
|
xkbVariant = "";
|
||
|
};
|
||
|
|
||
|
console.keyMap = "uk";
|
||
|
|
||
|
nix.settings.trusted-users = [ "@wheel" ];
|
||
|
|
||
|
users.users.ash = {
|
||
|
isNormalUser = true;
|
||
|
description = "Ashley";
|
||
|
extraGroups = [ "networkmanager" "wheel" ];
|
||
|
packages = with pkgs; [];
|
||
|
};
|
||
|
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
helix
|
||
|
];
|
||
|
|
||
|
services.openssh.enable = true;
|
||
|
networking.firewall.allowedTCPPorts = [ 22 ];
|
||
|
# networking.firewall.allowedUDPPorts = [ ... ];
|
||
|
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|