nixos/hosts/sigma/default.nix

48 lines
1.5 KiB
Nix
Raw Normal View History

2024-03-28 17:31:20 +01:00
{...}: {
imports = [
../../overlays
../../modules/base
../../modules/server
2024-04-16 01:49:39 +02:00
./acme.nix
2024-04-21 17:12:52 +02:00
./borg.nix
2024-04-16 01:49:39 +02:00
./caddy.nix
2024-04-22 23:59:18 +02:00
./deluge.nix
2024-04-24 02:11:22 +02:00
./forgejo.nix
2024-04-16 01:49:39 +02:00
./hardware.nix
2024-04-24 00:05:25 +02:00
./jellyfin.nix
2024-04-26 01:25:50 +02:00
./mail.nix
2024-04-29 22:50:50 +02:00
./memos.nix
2024-03-29 20:38:51 +01:00
./network.nix
2024-05-09 17:24:46 +02:00
./samba.nix
2024-04-24 00:05:25 +02:00
./sonarr.nix
2024-05-10 20:34:38 +02:00
./syncthing.nix
2024-03-28 17:31:20 +01:00
];
networking.hostName = "sigma";
boot = {
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
initrd.luks.devices.crypted.device = "/dev/disk/by-label/crypted";
};
# 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 = "23.11"; # Did you read the comment?
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home-manager.users.caspervk.home.stateVersion = "23.11"; # Did you read the comment?
}