mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 15:20:31 +01:00
add comin
This commit is contained in:
parent
632bd72c88
commit
ce1ca48877
|
@ -7,6 +7,10 @@
|
|||
nixpkgs-master.url = "github:NixOS/nixpkgs/master";
|
||||
apple-silicon.url = "github:tpwrules/nixos-apple-silicon";
|
||||
flake-parts.url = "github:hercules-ci/flake-parts";
|
||||
comin = {
|
||||
url = "github:nlewo/comin";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
compose2nix = {
|
||||
url = "github:aksiksi/compose2nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
|
|
@ -191,10 +191,10 @@
|
|||
lua-ls.enable = true;
|
||||
gopls.enable = true;
|
||||
nushell.enable = true;
|
||||
clangd = {
|
||||
enable = true;
|
||||
filetypes = ["c" "cpp" "objc" "objcpp" "cpp"];
|
||||
};
|
||||
clangd = {
|
||||
enable = true;
|
||||
filetypes = ["c" "cpp" "objc" "objcpp" "cpp"];
|
||||
};
|
||||
svelte.enable = true;
|
||||
ts-ls.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
|
||||
./monitoring.nix
|
||||
./caddy.nix
|
||||
./comin.nix
|
||||
./jellyfin.nix
|
||||
./calibre-web.nix
|
||||
./transmission.nix
|
||||
|
|
Loading…
Reference in a new issue