aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/adam/flake-parts.nix
blob: aa6d8b9689caf114fa1b7ae97b75d9f51ffd2a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ inputs, ... }:
{
  flake.nixosConfigurations."adam" = inputs.nixpkgs.lib.nixosSystem {
    specialArgs = { inherit inputs; };
    modules = with inputs.self.modules.nixos; [
      {
        nixpkgs.overlays = [
          inputs.self.overlays.ida-pro
          inputs.self.overlays.ida-pro-mcp
        ];
      }
      adam
      ida-pro
      home-manager
      plymouth
      localization
      kde
      dns
      audio
      font
      printer
      bluetooth
      wifi
      mullvad-vpn
      steam
      tailscale
      wooting
    ];
  };
}