mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 15:30:33 +01:00
add comin
This commit is contained in:
parent
632bd72c88
commit
ce1ca48877
|
@ -7,6 +7,10 @@
|
||||||
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
||||||
apple-silicon.url = "github:tpwrules/nixos-apple-silicon";
|
apple-silicon.url = "github:tpwrules/nixos-apple-silicon";
|
||||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||||
|
comin = {
|
||||||
|
url = "github:nlewo/comin";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
compose2nix = {
|
compose2nix = {
|
||||||
url = "github:aksiksi/compose2nix";
|
url = "github:aksiksi/compose2nix";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
|
@ -191,10 +191,10 @@
|
||||||
lua-ls.enable = true;
|
lua-ls.enable = true;
|
||||||
gopls.enable = true;
|
gopls.enable = true;
|
||||||
nushell.enable = true;
|
nushell.enable = true;
|
||||||
clangd = {
|
clangd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
filetypes = ["c" "cpp" "objc" "objcpp" "cpp"];
|
filetypes = ["c" "cpp" "objc" "objcpp" "cpp"];
|
||||||
};
|
};
|
||||||
svelte.enable = true;
|
svelte.enable = true;
|
||||||
ts-ls.enable = true;
|
ts-ls.enable = true;
|
||||||
java-language-server.enable = true;
|
java-language-server.enable = true;
|
||||||
|
|
18
hosts/x86_64-linux/beleth/comin.nix
Normal file
18
hosts/x86_64-linux/beleth/comin.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
services.comin = {
|
||||||
|
enable = true;
|
||||||
|
remotes = [
|
||||||
|
{
|
||||||
|
name = "origin";
|
||||||
|
url = "https://gitlab.com/your/infra.git";
|
||||||
|
branches.main.name = "main";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9,6 +9,7 @@ with lib; {
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./monitoring.nix
|
./monitoring.nix
|
||||||
./caddy.nix
|
./caddy.nix
|
||||||
|
./comin.nix
|
||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
./calibre-web.nix
|
./calibre-web.nix
|
||||||
./transmission.nix
|
./transmission.nix
|
||||||
|
|
Loading…
Reference in a new issue