CrOS/hosts/nixos/Incarceron/default.nix
2025-06-09 14:25:56 -04:00

30 lines
580 B
Nix

#################################
# #
# Incarceron - Laptop #
# NixOS running on Framework 13 #
# #
#################################
{
inputs,
lib,
pkgs,
...
}: {
imports = lib.flatten [
# Hardware
./hardware-configuration.nix # I want to use factor if possible
# Disks
inputs.disko.nixosModules.disko
# Misc
(map lib.custom.relativeToRoot [
# Required configs
"hosts/common/core"
# Optional configs
"hosts/common/optional/keyd.nix"
])
];
}