CrOS/hosts/nixos/Incarceron/default.nix
TheWanderingCrow 579365f2a8 work
2025-05-27 13:36:33 -04:00

31 lines
620 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
# inputs.stylix.nixosModules.stylix
(map lib.custom.relativeToRoot [
# Required configs
"hosts/common/core"
# Optional configs
"hosts/common/optional/keyd.nix"
])
];
}