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

35 lines
818 B
Nix
Raw Normal View History

2023-07-17 19:23:00 +02:00
{
2023-07-17 16:50:07 +02:00
imports = [
../common/global
../common/users/adrielus.nix
../common/optional/services/kanata.nix
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
./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
}