Add new puter, Midas

This commit is contained in:
Jimbo 2025-02-14 16:34:45 -05:00
parent 998fc526e7
commit 1c10a598e9
8 changed files with 194 additions and 0 deletions

24
hosts/midas/default.nix Normal file
View file

@ -0,0 +1,24 @@
{ pkgs, ... }:
{
imports = [
#./boot
./disko
#./filesystems
./hardware
./users
../../modules/system
];
networking = {
hostName = "midas";
hostId = "462433de";
};
system = {
desktop.enable = true;
#lanzaboote.enable = true;
wireless.enable = false;
libvirtd.enable = true;
stateVersion = "24.11";
};
}