This commit is contained in:
2025-08-28 19:15:02 +03:00
parent bc83b18d04
commit a029d29049
3 changed files with 15 additions and 1 deletions
+4
View File
@@ -51,6 +51,10 @@
url = "github:nix-community/nix-index-database"; url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
compose2nix = {
url = "github:aksiksi/compose2nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# extras # extras
# nix-gaming.url = "github:fufexan/nix-gaming"; # nix-gaming.url = "github:fufexan/nix-gaming";
+10 -1
View File
@@ -1,8 +1,17 @@
{ config, pkgs, ... }: {
config,
pkgs,
inputs,
...
}:
let let
in in
{ {
virtualisation = { virtualisation = {
docker.enable = true; docker.enable = true;
}; };
environment.systemPackages = [
inputs.compose2nix.packages.x86_64-linux.default
];
} }
+1
View File
@@ -5,6 +5,7 @@
{ {
imports = [ imports = [
#./cloudflared.nix #./cloudflared.nix
./3x-ui.nix
./netbird.nix ./netbird.nix
./nginx.nix ./nginx.nix
./xray.nix ./xray.nix