nixos-config/configurations/nixos/pureintent/default.nix
Sridhar Ratnakumar e9c556ba9a vira: hm service
2025-09-08 00:45:52 +02:00

33 lines
782 B
Nix

{ flake, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
nixos-unified.sshTarget = "srid@pureintent";
imports = [
self.nixosModules.default
./configuration.nix
(self + /modules/nixos/linux/eternal-terminal.nix)
(self + /modules/nixos/shared/github-runner.nix)
];
home-manager.sharedModules = [
(self + /modules/home/all/dropbox.nix)
];
services.openssh.enable = true;
services.tailscale.enable = true;
networking.firewall.allowedTCPPorts = [
80
443
];
programs.nix-ld.enable = true; # for vscode server
# Workaround the annoying `Failed to start Network Manager Wait Online` error on switch.
# https://github.com/NixOS/nixpkgs/issues/180175
systemd.services.NetworkManager-wait-online.enable = false;
}