katja's git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 {

  system        = "aarch64-darwin";

  sshPubKey    = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIMnLFWr1zTU8sEJr3XZaRoLxto0QAB9HOQRbyDphBS+";

  configuration = { nodeName, config, pkgs, lib, ... }: {

    networking.hostName     = nodeName;
    networking.computerName = nodeName;

    home-manager.users.katja.home.stateVersion = "24.11";
    system.stateVersion = 4;

  };

}