mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-12 07:38:56 -05:00
30 lines
580 B
Nix
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"
|
|
])
|
|
];
|
|
}
|