21 lines
453 B
Nix
21 lines
453 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";
|
|
|
|
# Set your time zone.
|
|
time.timeZone = "America/Phoenix";
|
|
|
|
system.stateVersion = "24.11";
|
|
|
|
security.sudo.wheelNeedsPassword = false;
|
|
}
|