add csharp
This commit is contained in:
parent
4ecb541679
commit
e3e84ca27a
2 changed files with 17 additions and 0 deletions
16
modules/dev/cs.nix
Normal file
16
modules/dev/cs.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
with lib;
|
||||||
|
let
|
||||||
|
cfg = config.modules.dev.csharp;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.dev.csharp = {
|
||||||
|
enable = mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
omnisharp-roslyn
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -8,5 +8,6 @@
|
||||||
./nixd.nix
|
./nixd.nix
|
||||||
./nil.nix
|
./nil.nix
|
||||||
./lua.nix
|
./lua.nix
|
||||||
|
./cs.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue