mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-16 17:42:28 -05:00
31 lines
620 B
Nix
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"
|
|
])
|
|
];
|
|
}
|