xin/hosts/pwntie/default.nix

136 lines
3.0 KiB
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ pkgs
, config
, ...
}:
let
#myEmacs = pkgs.callPackage ../../configs/emacs.nix { };
2022-12-31 05:53:50 -07:00
pubKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO7v+/xS8832iMqJHCWsxUZ8zYoMWoZhjj++e26g1fLT europa"
];
2023-09-12 08:44:05 -06:00
in
{
2023-06-07 07:07:25 -06:00
_module.args.isUnstable = false;
imports = [
./hardware-configuration.nix
];
2022-12-31 05:53:50 -07:00
2023-08-09 05:59:09 -06:00
hardware.rtl-sdr.enable = true;
2022-12-31 05:53:50 -07:00
# Bootloader.
2023-09-12 08:44:05 -06:00
boot = {
loader = {
systemd-boot.enable = true;
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot/efi";
};
};
kernelPackages = pkgs.linuxPackages_latest;
2022-12-31 05:53:50 -07:00
2023-09-12 08:44:05 -06:00
binfmt.emulatedSystems = [ "aarch64-linux" "riscv64-linux" ];
};
nixpkgs.config.allowUnsupportedSystem = true;
2022-12-31 05:53:50 -07:00
networking = {
hostName = "pwntie";
networkmanager.enable = true;
firewall = {
enable = true;
2023-09-12 08:44:05 -06:00
allowedTCPPorts = [ 22 ];
2022-12-31 05:53:50 -07:00
checkReversePath = "loose";
};
};
virtualisation.libvirtd.enable = true;
environment.sessionVariables = {
XDG_BIN_HOME = "\${HOME}/.local/bin";
XDG_CACHE_HOME = "\${HOME}/.cache";
XDG_CONFIG_HOME = "\${HOME}/.config";
XDG_DATA_HOME = "\${HOME}/.local/share";
2023-07-11 09:12:50 -06:00
STEAM_EXTRA_COMPAT_TOOLS_PATHS = "\${HOME}/.steam/root/compatibilitytools.d";
2023-09-12 08:44:05 -06:00
PATH = [ "\${XDG_BIN_HOME}" ];
2022-12-31 05:53:50 -07:00
};
#nixpkgs.config.allowUnfree = true;
2023-08-09 05:59:09 -06:00
environment.systemPackages = with pkgs; [
rtl-sdr
direwolf
2023-09-12 08:44:05 -06:00
(callPackage ../../pkgs/rtlamr.nix { })
2023-08-09 05:59:09 -06:00
];
2022-12-31 05:53:50 -07:00
#programs = {
# steam.enable = true;
# _1password.enable = true;
# _1password-gui = {
# enable = true;
# polkitPolicyOwners = [ "qbit" ];
# };
# dconf.enable = true;
#};
2022-12-31 05:53:50 -07:00
2023-01-31 12:55:24 -07:00
xinCI = {
user = "qbit";
enable = true;
};
2023-01-05 11:43:53 -07:00
services = {
rtlamr2mqtt = {
enable = true;
configuration = {
general = {
device_ids_path = "${config.services.rtlamr2mqtt.package}/sdl_ids.txt";
sleep_for = 0;
verbosity = "debug";
tickle_rtl_tcp = false;
device_id = "0bda:2838";
};
mqtt = {
host = "10.6.0.15";
port = 1883;
tls_enabled = false;
ha_autodiscovery = true;
base_topec = "rtlamr";
};
custom_parameters = {
rtltcp = "-s 2048000";
rtlamr = "-unique=true -symbollength=32";
};
meters = [
{
id = 48582066;
protocol = "scm";
name = "gas_meter";
unit_of_measurement = "ft³";
icon = "mdi:gas-burner";
device_class = "gas";
state_class = "total_increasing";
}
];
};
};
#emacs = {
# enable = true;
# package = myEmacs;
# install = true;
#};
2023-01-05 11:43:53 -07:00
fwupd = {
enable = true;
enableTestRemote = true;
};
2022-12-31 05:53:50 -07:00
};
2023-09-12 08:44:05 -06:00
users = {
users = {
root = { openssh.authorizedKeys.keys = pubKeys; };
qbit = {
openssh.authorizedKeys.keys = pubKeys;
extraGroups = [ "dialout" "libvirtd" "docker" "plugdev" ];
};
};
};
2022-12-31 05:53:50 -07:00
system.stateVersion = "22.11";
}