1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, pkgs, lib, ... }:
{
imports = [
../../configurations/common
];
networking.hostName = "blechkasten";
networking.computerName = config.networking.hostName;
#currently broken in nixpkgs-darwin
ctucxConfig.programs.ocrmypdf.enable = lib.mkForce false;
home-manager.users.katja.home.stateVersion = "24.11";
system.stateVersion = 4;
}