1
Fork 0
satellite/hosts/nixos/lapetus/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2023-07-17 19:23:00 +02:00
{
2023-07-17 16:50:07 +02:00
imports = [
../common/global
2024-05-21 01:37:39 +02:00
../common/users/pilot.nix
../common/optional/services/kanata.nix
2024-05-30 02:35:16 +02:00
../common/optional/services/restic
2023-07-17 16:50:07 +02:00
2023-07-18 16:30:04 +02:00
./services/syncthing.nix
2024-01-18 08:14:26 +01:00
./services/whoogle.nix
2024-01-31 21:59:11 +01:00
./services/pounce.nix
./services/intray.nix
2024-02-12 17:39:27 +01:00
./services/smos.nix
2024-02-10 04:15:17 +01:00
./services/vaultwarden.nix
2024-02-24 01:55:05 +01:00
./services/actual.nix
2024-02-24 03:51:35 +01:00
./services/homer.nix
2024-02-12 14:57:13 +01:00
./services/zfs.nix
2024-02-24 06:52:01 +01:00
./services/prometheus.nix
./services/grafana.nix
./services/commafeed.nix
2024-03-11 15:46:27 +01:00
./services/invidious.nix
./services/diptime.nix
2024-04-01 06:24:29 +02:00
./services/radicale.nix
2024-04-22 22:45:08 +02:00
./services/redlib.nix
2024-04-28 00:25:22 +02:00
./services/jellyfin.nix
2024-05-30 04:09:44 +02:00
./services/qbittorrent.nix # turned on/off depending on whether my vpn is paid for
2024-05-09 15:20:03 +02:00
./services/microbin.nix
2024-05-11 01:09:43 +02:00
./services/forgejo.nix
2024-05-21 01:49:20 +02:00
./services/jupyter.nix
2024-05-09 03:33:22 +02:00
# ./services/ddclient.nix
./filesystems
./hardware
2023-07-17 16:50:07 +02:00
];
2023-07-18 16:30:04 +02:00
# Machine ids
2023-07-17 16:50:07 +02:00
networking.hostName = "lapetus";
2023-07-17 19:44:54 +02:00
networking.hostId = "08357db3";
2023-07-18 15:16:57 +02:00
environment.etc.machine-id.text = "d9571439c8a34e34b89727b73bad3587";
2023-07-17 16:50:07 +02:00
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
2023-07-17 19:23:00 +02:00
system.stateVersion = "23.05";
2023-07-17 16:50:07 +02:00
2023-07-18 16:30:04 +02:00
# Bootloader
2023-07-18 00:48:23 +02:00
boot.loader.systemd-boot.enable = true;
2023-07-17 16:50:07 +02:00
}