xin/hosts/europa/default.nix

332 lines
8.1 KiB
Nix
Raw Normal View History

2023-03-22 10:35:46 -06:00
{ config, pkgs, lib, xinlib, ... }:
let
restic = pkgs.writeScriptBin "restic" (import ../../bins/restic.nix {
inherit pkgs;
inherit lib;
inherit config;
});
2022-09-11 09:44:34 -06:00
myEmacs = pkgs.callPackage ../../configs/emacs.nix { };
peerixUser = if builtins.hasAttr "peerix" config.users.users then
config.users.users.peerix.name
else
"root";
jobs = [
{
name = "brain";
2023-01-13 07:05:08 -07:00
script = "cd ~/Brain && git sync";
startAt = "*:0/2";
2023-01-13 07:05:08 -07:00
path = [ pkgs.git pkgs.git-sync ];
}
{
name = "org";
2023-01-13 07:05:08 -07:00
script = "(cd ~/org && git sync)";
startAt = "*:0/5";
2023-01-13 07:05:08 -07:00
path = [ pkgs.git pkgs.git-sync ];
}
{
name = "taskobs";
2023-01-13 07:05:08 -07:00
script = "taskobs";
startAt = "*:0/30";
path = [ pkgs.taskobs ] ++ pkgs.taskobs.buildInputs;
}
];
2022-08-25 12:21:35 -06:00
in {
_module.args.isUnstable = true;
imports =
[ ./hardware-configuration.nix ../../pkgs ../../configs/neomutt.nix ];
2022-08-25 12:21:35 -06:00
sops.secrets = {
fastmail = {
sopsFile = config.xin-secrets.europa.qbit;
owner = "qbit";
group = "wheel";
mode = "400";
};
fastmail_user = {
sopsFile = config.xin-secrets.europa.qbit;
owner = "qbit";
group = "wheel";
mode = "400";
};
nix_review = {
sopsFile = config.xin-secrets.europa.qbit;
owner = "qbit";
group = "wheel";
mode = "400";
};
netrc = {
sopsFile = config.xin-secrets.europa.qbit;
owner = "qbit";
group = "wheel";
mode = "400";
};
2022-08-30 15:56:37 -06:00
peerix_private_key = {
sopsFile = config.xin-secrets.europa.peerix;
owner = "${peerixUser}";
2022-08-30 15:56:37 -06:00
group = "wheel";
mode = "400";
};
2023-01-04 18:42:14 -07:00
restic_password_file = {
sopsFile = config.xin-secrets.europa.services;
owner = "root";
mode = "400";
};
restic_env_file = {
sopsFile = config.xin-secrets.europa.services;
owner = "root";
mode = "400";
};
2022-08-25 12:21:35 -06:00
};
boot.binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ];
2022-08-25 12:21:35 -06:00
nixpkgs.config.allowUnsupportedSystem = true;
boot = {
2022-11-16 20:25:14 -07:00
initrd.systemd.enable = true;
2022-08-25 12:21:35 -06:00
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
2022-08-25 12:21:35 -06:00
};
2022-09-08 06:26:54 -06:00
kernelParams = [ "boot.shell_on_fail" "mem_sleep_default=deep" ];
2023-02-01 11:58:56 -07:00
kernelPackages = pkgs.linuxPackages_latest;
#kernelPackages = pkgs.linuxPackages;
2022-08-25 12:21:35 -06:00
};
sshFidoAgent.enable = true;
nixManager = {
enable = true;
user = "qbit";
};
kde.enable = true;
jetbrains.enable = true;
virtualisation.libvirtd.enable = true;
networking = {
hostName = "europa";
hostId = "87703c3e";
wireless.userControlled.enable = true;
networkmanager.enable = true;
firewall = {
enable = true;
allowedTCPPorts = [ 22 ];
};
};
2022-08-30 15:56:37 -06:00
tsPeerix = {
2022-09-01 12:14:46 -06:00
enable = false;
2022-08-30 15:56:37 -06:00
privateKeyFile = "${config.sops.secrets.peerix_private_key.path}";
2022-09-01 08:09:01 -06:00
interfaces = [ "wlp170s0" "ztksevmpn3" ];
2022-08-30 15:56:37 -06:00
};
2022-12-18 06:15:19 -07:00
programs = {
steam.enable = true;
_1password.enable = true;
_1password-gui = {
enable = true;
polkitPolicyOwners = [ "qbit" ];
};
dconf.enable = true;
zsh = {
shellInit = ''
export OP_PLUGIN_ALIASES_SOURCED=1
'';
shellAliases = {
"gh" = "op plugin run -- gh";
2023-01-25 11:09:34 -07:00
"nixpkgs-review" = "op plugin run -- nixpkgs-review";
2022-12-28 14:42:00 -07:00
"godeps" =
"go list -m -f '{{if not (or .Indirect .Main)}}{{.Path}}{{end}}' all";
"mutt" = "neomutt -F /etc/neomuttrc";
2022-12-25 06:06:55 -07:00
"neomutt" = "neomutt -F /etc/neomuttrc";
};
2022-12-18 06:15:19 -07:00
};
};
2023-03-06 18:07:02 -07:00
services.xinCA = { enable = true; };
2022-08-25 12:21:35 -06:00
services = {
2023-01-04 18:42:14 -07:00
restic = {
backups = {
local = {
initialize = true;
repository = "/run/media/qbit/backup/${config.networking.hostName}";
environmentFile = "${config.sops.secrets.restic_env_file.path}";
passwordFile = "${config.sops.secrets.restic_password_file.path}";
2023-01-07 06:36:44 -07:00
paths = [ "/home/qbit" "/var/lib/libvirt" ];
2023-01-04 18:42:14 -07:00
2023-01-05 06:45:49 -07:00
pruneOpts = [ "--keep-daily 7" "--keep-weekly 5" "--keep-yearly 5" ];
2023-01-04 18:42:14 -07:00
};
};
};
2022-12-27 07:40:02 -07:00
pcscd.enable = true;
2022-11-16 21:18:36 -07:00
vnstat.enable = true;
2022-09-21 16:35:46 -06:00
clamav.updater.enable = true;
2022-09-11 09:44:34 -06:00
emacs = {
enable = true;
package = myEmacs;
install = true;
};
2022-08-25 12:21:35 -06:00
tor = {
enable = true;
client.enable = true;
};
fwupd = {
enable = true;
enableTestRemote = true;
};
udev.extraRules = ''
SUBSYSTEM=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="5bf0", GROUP="users", TAG+="uaccess"
'';
};
2023-02-06 19:03:49 -07:00
security.pki.certificates = [''
-----BEGIN CERTIFICATE-----
MIIDPTCCAiWgAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDExdPYnNp
ZGlhbiBMb2NhbCBSRVNUIEFQSTAeFw0yMzAyMDcwMTQ3NDVaFw0yNDAyMDcwMTQ3
NDVaMCIxIDAeBgNVBAMTF09ic2lkaWFuIExvY2FsIFJFU1QgQVBJMIIBIjANBgkq
hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiRr4708X1QMmQMG3+M7UoefV+9gq+jNR
bM5HCOlBuB16LrhRiR/6ROaDnB3OJBP4NToCVY6+tJvWOqJe9FVyzviWzGaFkZGF
eBF32QvYLZRbPTIVWADl+KabXm1TXtLos1GpPKnIjU9m+5Jt1ob8i4eTKjjarpSG
u4kvKBQiQYxxYXA+miuqxPWD/mkIySvx50EVzrO5X8u/M4MQqPlpMvL6W6AxMXQ+
WU5KWUkP3kU/CMB377GjqTfdwRMVqCFhKq0jzFueKrqY0qXnbLoTePFBV2HsPAhv
Xup15Yx7G5pLROYkvmxvxzgP6mycB3SOiPDwj9UsFk41+KZV9cm6pQIDAQABo34w
fDAMBgNVHRMEBTADAQH/MAsGA1UdDwQEAwIC9DA7BgNVHSUENDAyBggrBgEFBQcD
AQYIKwYBBQUHAwIGCCsGAQUFBwMDBggrBgEFBQcDBAYIKwYBBQUHAwgwEQYJYIZI
AYb4QgEBBAQDAgD3MA8GA1UdEQQIMAaHBH8AAAEwDQYJKoZIhvcNAQELBQADggEB
AHfjsIJpQlQcSP1Gy0gcrnBt9PhcA5TAqKlafKXVs0z60gVFDd/8d9PU3QxuTa4m
uQGLtFiMSudaoZoGhyEZ4kk5upqjfANppJj4R5UgPmfhp24AUvPjf2bVXczdIbvY
MNrXMtOq4+zD8QdZ25aPXT17LDIGx3TSM4HQzpu9YQdVt6fGgqPKFo3U9HGsBCja
lXsQ+lw4Hfi50HqLFRmLA50AP5m+EGdgIkVktAm7v8x0H8wHjd2Ysy8oRRAYtf2i
tynaHjsc6x3jDd5HiGuShRNHV9r3Q+IG1+SikALFk0nhKfB4DpYTz/fSQsw9hEj5
5wYD1VN/zBzPsHUUwCujYOs=
-----END CERTIFICATE-----
''];
systemd.user.services =
2023-03-03 07:06:30 -07:00
lib.listToAttrs (builtins.map xinlib.jobToUserService jobs);
systemd.services."whytailscalewhy" = {
description = "Tailscale restart on resume";
wantedBy = [ "post-resume.target" ];
after = [ "post-resume.target" ];
script = ''
. /etc/profile;
${pkgs.systemd}/bin/systemctl restart tailscaled.service
'';
serviceConfig.Type = "oneshot";
};
2023-03-12 09:19:39 -06:00
virtualisation.docker.enable = false;
users.users.qbit.extraGroups = [
"dialout"
"libvirtd"
#"docker"
];
2022-08-25 12:21:35 -06:00
nixpkgs.config.allowUnfree = true;
2022-12-04 06:22:35 -07:00
environment.sessionVariables = {
XDG_BIN_HOME = "\${HOME}/.local/bin";
XDG_CACHE_HOME = "\${HOME}/.cache";
XDG_CONFIG_HOME = "\${HOME}/.config";
XDG_DATA_HOME = "\${HOME}/.local/share";
2022-12-05 15:35:22 -07:00
STEAM_EXTRA_COMPAT_TOOLS_PATHS =
"\${HOME}/.steam/root/compatibilitytools.d";
2022-12-04 06:22:35 -07:00
PATH = [ "\${XDG_BIN_HOME}" ];
MUHOME = "\${HOME}/.config/mu";
2022-12-04 06:22:35 -07:00
};
2022-08-25 12:21:35 -06:00
environment.systemPackages = with pkgs; [
2022-12-19 06:10:04 -07:00
aerc
2022-08-25 12:21:35 -06:00
arcanPackages.all-wrapped
barrier
2022-09-06 13:37:44 -06:00
calibre
2022-08-25 12:21:35 -06:00
cider
2022-12-04 06:22:35 -07:00
cinny-desktop
2022-10-14 07:31:38 -06:00
clementine
2022-08-25 12:21:35 -06:00
element-desktop
2023-05-06 08:41:56 -06:00
elmPackages.elm
elmPackages.elm-format
elmPackages.elm-language-server
elmPackages.elm-live
2023-05-11 06:25:14 -06:00
elmPackages.elm-test
2023-05-06 08:41:56 -06:00
entr
2022-08-25 12:21:35 -06:00
exercism
2022-12-22 09:16:52 -07:00
gh
2023-05-06 08:41:56 -06:00
git-credential-1password
2022-08-25 12:21:35 -06:00
isync
klavaro
linphone
2022-10-14 07:32:14 -06:00
minicom
2022-08-25 12:21:35 -06:00
mu
2022-09-12 07:18:48 -06:00
nheko
2022-08-25 12:21:35 -06:00
nix-index
nixpkgs-review
2022-08-25 12:21:35 -06:00
nix-top
2022-08-30 15:57:40 -06:00
nmap
2023-04-18 11:04:21 -06:00
nushell
2022-09-14 14:21:30 -06:00
obsidian
pharo
pharo-launcher
2022-12-04 06:22:35 -07:00
proton-caller
protonup-ng
2023-05-06 08:41:56 -06:00
rex
2022-08-25 12:21:35 -06:00
rofi
signal-desktop
taskobs
2022-08-30 15:57:40 -06:00
tcpdump
tea
thunderbird
2022-08-25 12:21:35 -06:00
tidal-hifi
tigervnc
2022-08-30 15:57:40 -06:00
unzip
2022-09-11 19:17:13 -06:00
virt-manager
2022-08-25 12:21:35 -06:00
yt-dlp
#yubioath-flutter
2022-08-30 20:53:03 -06:00
zig
2022-12-15 08:26:49 -07:00
talon
(callPackage ../../pkgs/iamb.nix { })
2023-02-08 06:27:19 -07:00
(callPackage ../../pkgs/kobuddy.nix {
inherit pkgs;
inherit (pkgs.python39Packages)
2023-03-20 08:58:44 -06:00
buildPythonPackage fetchPypi setuptools-scm pytz banal sqlalchemy
alembic;
2023-02-08 06:27:19 -07:00
})
2023-01-14 05:35:59 -07:00
(callPackage ../../pkgs/gokrazy.nix { })
2022-11-16 21:28:02 -07:00
(callPackage ../../pkgs/zutty.nix { })
restic
2022-08-25 12:21:35 -06:00
];
# for Pharo
security.pam.loginLimits = [
{
domain = "qbit";
type = "hard";
item = "rtprio";
value = "2";
}
{
domain = "qbit";
type = "soft";
item = "rtprio";
value = "2";
}
];
2022-11-08 14:54:41 -07:00
system.autoUpgrade.allowReboot = false;
system.autoUpgrade.enable = false;
2022-08-25 12:21:35 -06:00
system.stateVersion = "21.11";
}