add jank-client
This commit is contained in:
parent
8e45e7ddb2
commit
e0cd2a7940
2 changed files with 7 additions and 7 deletions
10
flake.nix
10
flake.nix
|
@ -3,8 +3,9 @@
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/release-25.05";
|
nixpkgs.url = "github:nixos/nixpkgs/release-25.05";
|
||||||
noshell.url = "github:viperML/noshell";
|
noshell.url = "github:viperML/noshell";
|
||||||
elmskell-blog.url = "git+file:///var/lib/git-server/blog.git";
|
|
||||||
spacebar-server.url = "github:spacebarchat/server";
|
spacebar-server.url = "github:spacebarchat/server";
|
||||||
|
|
||||||
|
elmskell-blog.url = "git+file:///var/lib/git-server/blog.git";
|
||||||
jank-client.url = "git+file:///var/lib/git-server/jank-client-fork.git";
|
jank-client.url = "git+file:///var/lib/git-server/jank-client-fork.git";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -34,18 +35,13 @@
|
||||||
./services/elmskell.nix
|
./services/elmskell.nix
|
||||||
./services/blog.nix
|
./services/blog.nix
|
||||||
|
|
||||||
|
jank-client.nixosModules.x86_64-linux.default
|
||||||
./services/spacebar.nix
|
./services/spacebar.nix
|
||||||
./services/rgit.nix
|
./services/rgit.nix
|
||||||
|
|
||||||
noshell.nixosModules.default
|
noshell.nixosModules.default
|
||||||
{programs.noshell.enable = true;}
|
{programs.noshell.enable = true;}
|
||||||
|
|
||||||
jank-client.nixosModules.x86_64-linux.default
|
|
||||||
{
|
|
||||||
services.jank-client.enable = true;
|
|
||||||
services.jank-client.port = 8282;
|
|
||||||
}
|
|
||||||
|
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -62,4 +62,8 @@ in {
|
||||||
openssh.authorizedKeys.keys = ssh-pub-keys;
|
openssh.authorizedKeys.keys = ssh-pub-keys;
|
||||||
};
|
};
|
||||||
users.groups.spacebar = {};
|
users.groups.spacebar = {};
|
||||||
|
services.jank-client = {
|
||||||
|
enable = true;
|
||||||
|
port = 8282;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue