summaryrefslogtreecommitdiff
path: root/hosts/shared/pi/configuration.nix
blob: f3b732ab4a47859838904a7c33c2f6702cbbf8a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  self,
  ...
}:
{
  imports = [
    "${self}/modules/core"
    "${self}/modules/options"
    "${self}/modules/pi"
  ];

  config = {
    modules.primaryUser = "ebisu";
    system.stateVersion = "24.05";
    raspberry-pi-nix.kernel-version = "v6_10_12";
  };
}