hosts: orm: initial setup

This commit is contained in:
Katherina Walshe-Grey 2024-07-02 17:53:22 +01:00
parent 7c700718ed
commit 8c089a1a55
4 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./home.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "23.11";
}