blob: b191c59e38251417ac41f29ba0f4420a5085c3d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ 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
];
};
}
|