Files
Chickadee/hosts/vps/default.nix
T

28 lines
561 B
Nix
Raw Normal View History

2026-07-11 14:56:13 -04:00
{ config, lib, pkgs, ... }:
{
imports = [
2026-07-11 16:28:11 -04:00
./hardware-configuration.nix
../../modules/network.nix
../../modules/ssh.nix
../../modules/wireguard.nix
../../modules/http-forwarding.nix
2026-07-11 14:56:13 -04:00
];
2026-07-11 16:28:11 -04:00
network.node = "vps";
2026-07-11 14:56:13 -04:00
networking.hostName = "vps";
2026-07-11 16:28:11 -04:00
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
2026-07-11 14:56:13 -04:00
2026-07-11 16:28:11 -04:00
users.root = import ../../home/root.nix;
};
programs.zsh.enable = true;
users.users.root.shell = pkgs.zsh;
2026-07-11 14:56:13 -04:00
2026-07-11 16:28:11 -04:00
nix.settings.experimental-features = [ "nix-command" "flakes" ];
2026-07-11 14:56:13 -04:00
system.stateVersion = "26.05";
}