aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/adam/flake-parts.nix
blob: 2278c71e344ca93dc405ee95d2a777c103f71b1d (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
{ inputs, ... }:
{
  flake.nixosConfigurations."adam" = inputs.nixpkgs.lib.nixosSystem {
    specialArgs = { inherit inputs; };
    modules = with inputs.self.modules.nixos; [
      inputs.self.modules.nixos.nixpkgs
      inputs.lanzaboote.nixosModules.lanzaboote
      adam
      ida-pro
      home-manager
      plymouth
      localization
      kde
      dns
      audio
      font
      printer
      bluetooth
      wifi
      mullvad-vpn
      steam
      tailscale
      wooting
      sunshine
      openssh
    ];
  };
}