mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
must be a desktop to install vscode
This commit is contained in:
parent
9332150deb
commit
4ebca41452
2 changed files with 17 additions and 3 deletions
|
@ -2,7 +2,13 @@
|
|||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}: let
|
||||
gitea-shim = pkgs.writeShellScriptBin "gitea" ''
|
||||
#!/bin/sh
|
||||
ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
|
||||
'';
|
||||
|
||||
in {
|
||||
imports = with inputs.self.nixosModules; [
|
||||
docker
|
||||
];
|
||||
|
@ -15,6 +21,8 @@
|
|||
|
||||
environment.systemPackages = with pkgs; [
|
||||
rclone
|
||||
|
||||
gitea-shim
|
||||
];
|
||||
|
||||
# https://francis.begyn.be/blog/nixos-restic-backups
|
||||
|
|
|
@ -1,10 +1,16 @@
|
|||
{
|
||||
input,
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
cfg = config.desktop;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
# vscode
|
||||
vscode-fhs
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue