34 lines
831 B
Nix
34 lines
831 B
Nix
{ inputs, lib, ... }:
|
|
{
|
|
imports = [
|
|
inputs.disko.nixosModules.disko
|
|
./format.nix
|
|
|
|
./hardware
|
|
|
|
../common/configs/system/btrfs
|
|
../common/configs/system/impermanence
|
|
../common/configs/system/neovim
|
|
../common/configs/system/nix
|
|
../common/configs/system/nixpkgs
|
|
../common/configs/system/podman
|
|
../common/configs/system/sops
|
|
../common/configs/system/sshd
|
|
../common/configs/system/system
|
|
../common/configs/system/users
|
|
../common/configs/system/zsh
|
|
|
|
./configs/boot
|
|
./configs/podman
|
|
./configs/wireguard
|
|
];
|
|
|
|
networking.hostName = "jupiter-vps";
|
|
|
|
environment.impermanence.enable = lib.mkForce false;
|
|
|
|
users.users.root.openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEWDA5vnIB7KE2VG28Ovg5rXtQqxFwMXsfozLsH0BNZS nick@karaolidis.com"
|
|
];
|
|
}
|