aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/adam/flake-parts.nix
blob: dc9654e143113c2db723952393bbedfdd1feb94d (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
{ inputs, ... }:
{
  flake.nixosConfigurations."adam" = inputs.nixpkgs.lib.nixosSystem {
    specialArgs = { inherit inputs; };
    modules = with inputs.self.modules.nixos; [
      {
        nixpkgs.overlays = [ inputs.nixpkgs-wayland.overlays.default ];
      }
      adam
      home-manager
      plymouth
      kde
      localization
      sway
      dns
      audio
      bluetooth
      mullvad-vpn
      steam
      sunshine
      wooting
    ];
  };
}