freun.dev add snips
This commit is contained in:
committed by
Joakim Repomaa
parent
f1d5a4b2f2
commit
983e313e11
37
flake.nix
37
flake.nix
@@ -44,25 +44,28 @@
|
||||
};
|
||||
ksoloti-pr.url = "github:repomaa/nixpkgs/pkg/ksoloti";
|
||||
};
|
||||
outputs = { nixpkgs, ... }@inputs: {
|
||||
nixosConfigurations = {
|
||||
freun-dev = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [ ./modules ./hosts/freun.dev ];
|
||||
};
|
||||
outputs = { nixpkgs, ... }@inputs:
|
||||
let
|
||||
bin.sshPort = 2222;
|
||||
specialArgs = { inherit inputs bin; };
|
||||
system = "x86_64-linux";
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
freun-dev = nixpkgs.lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
modules = [ ./modules ./hosts/freun.dev ];
|
||||
};
|
||||
|
||||
radish = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [ ./modules ./hosts/radish ];
|
||||
};
|
||||
radish = nixpkgs.lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
modules = [ ./modules ./hosts/radish ];
|
||||
};
|
||||
|
||||
apu = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [ ./modules ./hosts/apu ];
|
||||
apu = nixpkgs.lib.nixosSystem {
|
||||
inherit system specialArgs;
|
||||
modules = [ ./modules ./hosts/apu ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user