2023-03-15 14:58:55 +00:00
|
|
|
{ config, pkgs, inputs, ... }:
|
2023-02-05 14:48:47 +00:00
|
|
|
|
|
|
|
{
|
2023-04-18 11:33:38 +00:00
|
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
2023-02-05 14:48:47 +00:00
|
|
|
|
2023-03-10 08:22:59 +00:00
|
|
|
i18n.defaultLocale = "en_GB.UTF-8";
|
2023-06-10 18:55:42 +00:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
environment.variables.LC_ALL = "en_GB.UTF-8";
|
|
|
|
|
2023-02-05 14:48:47 +00:00
|
|
|
time.timeZone = "Europe/London";
|
|
|
|
|
2023-03-10 08:22:59 +00:00
|
|
|
users.groups.tmux.gid = 1000; # Used for tmux pairing
|
|
|
|
systemd.tmpfiles.rules = [
|
2023-03-13 08:57:11 +00:00
|
|
|
"d /var/tmux_share 2770 tsv tmux"
|
2023-03-10 08:22:59 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
users.users.tsv = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"docker"
|
|
|
|
"tmux"
|
|
|
|
];
|
|
|
|
initialPassword = "password";
|
2023-07-06 13:09:04 +00:00
|
|
|
openssh.authorizedKeys.keyFiles = [
|
2023-07-07 06:57:08 +00:00
|
|
|
../../users/tsv/authorized_keys
|
2023-07-06 13:09:04 +00:00
|
|
|
];
|
2023-03-10 08:22:59 +00:00
|
|
|
};
|
|
|
|
|
2023-02-17 11:51:36 +00:00
|
|
|
nix.settings.trusted-users = [ "root" "tsv" ];
|
|
|
|
|
2023-03-09 18:49:28 +00:00
|
|
|
nix = {
|
|
|
|
extraOptions = "experimental-features = nix-command flakes";
|
|
|
|
package = pkgs.nixFlakes;
|
2023-06-06 09:51:38 +00:00
|
|
|
gc = {
|
|
|
|
automatic = true;
|
|
|
|
dates = "weekly";
|
|
|
|
options = "--delete-older-than 30d";
|
|
|
|
};
|
2023-03-09 18:49:28 +00:00
|
|
|
};
|
|
|
|
|
2023-02-06 09:21:35 +00:00
|
|
|
hardware.bluetooth.enable = true;
|
2023-02-05 14:48:47 +00:00
|
|
|
|
2023-04-28 19:22:01 +00:00
|
|
|
programs.gnupg.agent = {
|
|
|
|
enable = true;
|
|
|
|
enableSSHSupport = true;
|
|
|
|
pinentryFlavor = "curses";
|
|
|
|
};
|
|
|
|
|
2023-02-05 14:48:47 +00:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
2023-03-10 08:22:59 +00:00
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
2023-07-07 18:42:18 +00:00
|
|
|
ports = [ 2222 ];
|
2023-03-10 08:22:59 +00:00
|
|
|
settings.PasswordAuthentication = false;
|
|
|
|
};
|
2023-02-05 14:48:47 +00:00
|
|
|
|
2023-02-05 16:57:39 +00:00
|
|
|
system.stateVersion = "22.11"; # Don't change this
|
2023-02-05 14:48:47 +00:00
|
|
|
}
|
|
|
|
|