clanModules: init packages
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
single-disk = ./single-disk;
|
||||
matrix-synapse = ./matrix-synapse;
|
||||
moonlight = ./moonlight;
|
||||
packages = ./packages;
|
||||
postgresql = ./postgresql;
|
||||
root-password = ./root-password;
|
||||
sshd = ./sshd;
|
||||
|
||||
4
clanModules/packages/README.md
Normal file
4
clanModules/packages/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
description = "Define package sets from nixpkgs and install them on one or more machines"
|
||||
categories = ["packages"]
|
||||
---
|
||||
19
clanModules/packages/default.nix
Normal file
19
clanModules/packages/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.clan.packages = {
|
||||
packages = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.str;
|
||||
description = "The packages to install on the machine";
|
||||
};
|
||||
};
|
||||
config = {
|
||||
environment.systemPackages = map (
|
||||
pName: lib.getAttrFromPath (lib.splitString "." pName) pkgs
|
||||
) config.clan.packages.packages;
|
||||
};
|
||||
}
|
||||
1
clanModules/packages/roles/default.nix
Normal file
1
clanModules/packages/roles/default.nix
Normal file
@@ -0,0 +1 @@
|
||||
{ }
|
||||
Reference in New Issue
Block a user