Add base module for all machines
This commit is contained in:
parent
943522935b
commit
95b3be48f1
2 changed files with 13 additions and 0 deletions
6
clan.nix
6
clan.nix
|
@ -49,6 +49,12 @@
|
||||||
roles.default.extraModules = [./users/pedro/home.nix];
|
roles.default.extraModules = [./users/pedro/home.nix];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
base-all = {
|
||||||
|
module.name = "importer";
|
||||||
|
roles.default.tags.all = {};
|
||||||
|
roles.default.extraModules = ["modules/base.nix"];
|
||||||
|
};
|
||||||
|
|
||||||
podman = {
|
podman = {
|
||||||
module.name = "importer";
|
module.name = "importer";
|
||||||
roles.default.tags.desktop = {};
|
roles.default.tags.desktop = {};
|
||||||
|
|
7
modules/base.nix
Normal file
7
modules/base.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
# Must-have packages
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
vim
|
||||||
|
rsync
|
||||||
|
];
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue