aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/adam/flake-parts.nix
blob: 77ed51dd5f93613058850c0f8272ab3c6a4af435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ inputs, ... }:
{
  flake.nixosConfigurations."adam" = inputs.nixpkgs.lib.nixosSystem {
    specialArgs = { inherit inputs; };
    modules = with inputs.self.modules.nixos; [
      adam
      home-manager
      plymouth
      kde
      dns
      bluetooth
      mullvad-vpn
      steam
      wooting
    ];
  };
}