nixos-config/hosts/kitty/default.nix
2025-03-16 02:06:21 -04:00

20 lines
305 B
Nix

{ config, lib, ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./users
../../modules/system
];
networking.hostName = "kitty";
system = {
desktop.enable = true;
lanzaboote.enable = true;
fancyboot.enable = true;
stateVersion = "24.11";
};
}