mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
initial commit
This commit is contained in:
commit
7517f318dc
55 changed files with 1401 additions and 0 deletions
25
serverle.nix
Normal file
25
serverle.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue