2024-09-03 21:25:47 +02:00
|
|
|
{ config, pkgs, lib, inputs, ... }: {
|
2024-08-30 23:04:47 +02:00
|
|
|
imports =
|
|
|
|
[
|
2024-09-03 21:25:47 +02:00
|
|
|
./../../services/forgejo.nix
|
|
|
|
./../../users/lyn
|
2024-08-30 23:04:47 +02:00
|
|
|
./hardware-configuration.nix
|
2024-09-05 22:22:18 +02:00
|
|
|
./../../meta/profiles/base.nix
|
|
|
|
./../../meta/profiles/vm.nix
|
2024-08-30 23:04:47 +02:00
|
|
|
];
|
2024-09-06 02:47:41 +02:00
|
|
|
lyn.sops.secrets."hosts/forgenite/forgejo_db_password".owner = "forgejo";
|
2024-08-30 23:04:47 +02:00
|
|
|
# Use UEFI
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
2024-09-06 06:04:32 +02:00
|
|
|
networking.hostName = "forgenite"; # Define your hostname.
|
2024-08-30 23:04:47 +02:00
|
|
|
|
|
|
|
# Firewall stuff:
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
networking.firewall.allowPing = true;
|
2024-09-01 00:06:13 +02:00
|
|
|
|
2024-08-30 23:04:47 +02:00
|
|
|
# This value determines the NixOS release from which the default
|
|
|
|
# settings for stateful data, like file locations and database versions
|
|
|
|
# on your system were taken. It's perfectly fine and recommended to leave
|
|
|
|
# this value at the release version of the first install of this system.
|
|
|
|
# Before changing this value read the documentation for this option
|
|
|
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
|
|
|
|
|
|
nix.gc = {
|
|
|
|
automatic = true;
|
|
|
|
persistent = true;
|
|
|
|
options = "--delete-older-than 8d";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|