2 Commits

Author SHA1 Message Date
0bb6314a03 Update vars via generator state-version for machine vega 2025-11-05 16:22:09 +07:00
13df0a8421 common nixos module 2025-11-05 16:21:50 +07:00
5 changed files with 18 additions and 0 deletions

View File

@@ -45,6 +45,7 @@
./routers
./inventories
./modules/clan/flake-module.nix
./modules/nixos/flake-module.nix
];
}
);

View File

@@ -1,10 +1,13 @@
{
inputs,
config,
self,
...
}:
{
imports = [
self.nixosModules.common
(inputs.import-tree ./services)
(import ../../lib/auto-accept-zerotier-members.nix {

6
modules/nixos/common.nix Normal file
View File

@@ -0,0 +1,6 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
screen
];
}

View File

@@ -0,0 +1,7 @@
{
flake.nixosModules = {
common = {
imports = [ ./common.nix ];
};
};
}

View File

@@ -0,0 +1 @@
25.11