summary refs log tree commit diff
path: root/compat/nixos/default.nix
AgeCommit message (Expand)Author
2024-10-26Glued together corsac configurationMel
/pre>
{ config, ... }:

{
  age.secrets.wireless-secrets = {
    file = ../secrets/wireless-secrets.age;
  };

  networking.wireless = {
    enable = true;

    # each machine which uses this module will configure their interface.
    # interfaces = [ ];

    secretsFile = config.age.secrets.wireless-secrets.path;
    networks = {
      # yea this is my home network :3
      # (my boyfriends brother picked the name)
      "Das asoziale Netzwerk".pskRaw = "ext:psk_home";
    };
  };
}