NixOS configuration 馃獎
1{ inputs, self, ... }:
2{
3 imports = [ inputs.easy-hosts.flakeModule ];
4
5 config.easy-hosts = {
6 perClass = class: {
7 modules = [
8 "${self}/modules/base"
9 "${self}/modules/${class}"
10 "${self}/home"
11 ];
12 };
13
14 hosts = {
15 # Framework laptop
16 pineapple = { };
17
18 # Home server
19 apricot = { };
20 };
21 };
22}