main
 1{den, ...}: {
 2  den.hosts.kevin = {
 3    system = "x86_64-linux";
 4    description = ''
 5      Kevin - x86_64 Linux laptop for work and gaming.
 6      Based on a Lenovo ThinkBook 16P G5 IRX,
 7      with Intel Core i7-14650HX, 32GB RAM and 2TB NVMe storage.
 8    '';
 9
10    users.hpcesia = {
11      admin = true;
12      classes = ["user" "hjem"];
13    };
14
15    settings.secret.pubKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOO9CyAqGo/WbJkncrt1a9jxS1E+hd550SC4A08I/l0/ root@kevin";
16  };
17
18  den.aspects.kevin = {
19    includes = with den.aspects; [
20      desktop
21      desktop.game
22      dev
23    ];
24  };
25}