driftwood inital
This commit is contained in:
parent
18a8556187
commit
ae01142320
5 changed files with 192 additions and 0 deletions
20
nixos/machines/driftwood/configuration.nix
Normal file
20
nixos/machines/driftwood/configuration.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Edit this configuration file to define what should be installed on
|
||||
# your system. Help is available in the configuration.nix(5) man page, on
|
||||
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
|
||||
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
networking.hostName = "driftwood";
|
||||
|
||||
time.timeZone = "America/Louisville";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
||||
system.stateVersion = "24.11"; # Did you read the comment?
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue