refactor!: multi-host setup
This commit is contained in:
10
nix/modules/commonPackages.nix
Normal file
10
nix/modules/commonPackages.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ pkgs, lib, ... }: {
|
||||
options = {
|
||||
commonPackages = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.package;
|
||||
default = [ ];
|
||||
description = "Common packages";
|
||||
};
|
||||
};
|
||||
config.commonPackages = with pkgs; [ wget busybox curl ];
|
||||
}
|
||||
Reference in New Issue
Block a user