nixos-config/sites/sunflower/configuration.nix

18 lines
391 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./hardware-configuration.nix ];
boot.initrd.supportedFilesystems = [ "zfs" ];
boot.initrd.systemd.enable = true;
services.zfs.autoScrub.enable = true;
services.zfs.trim.enable = true;
networking.hostName = "sunflower";
networking.hostId = "77d68c52";
system.stateVersion = "24.11";
security.sudo.wheelNeedsPassword = false;
}