mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
26 lines
521 B
Nix
26 lines
521 B
Nix
![]() |
{ config, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./default.nix
|
||
|
./core.nix
|
||
|
./disks.nix
|
||
|
./disks-srv.nix
|
||
|
./users.nix
|
||
|
./extra/networkdecrypt.nix
|
||
|
./extra/ssh.nix
|
||
|
./extra/avahi.nix
|
||
|
./hardware/raspberrypi4.nix
|
||
|
];
|
||
|
networking.hostName = "serverle";
|
||
|
|
||
|
#environment.noXlibs = true;
|
||
|
|
||
|
# Nix
|
||
|
nix.gc.automatic = true;
|
||
|
nix.gc.options = "--delete-older-than 30d";
|
||
|
|
||
|
system.stateVersion = "20.09";
|
||
|
system.autoUpgrade.enable = true;
|
||
|
system.autoUpgrade.channel = https://nixos.org/channels/nixos-20.09;
|
||
|
}
|