mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-13 00:16:24 +00:00
vscode-server
This commit is contained in:
parent
7994ec1418
commit
917c298e5c
2 changed files with 14 additions and 2 deletions
|
@ -23,7 +23,10 @@
|
|||
nixpkgs = {
|
||||
overlays = builtins.attrValues outputs.overlays;
|
||||
config = {
|
||||
# Disable if you don't want unfree packages
|
||||
allowUnfree = true;
|
||||
# Accept the joypixels license
|
||||
joypixels.acceptLicense = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -53,4 +56,12 @@
|
|||
value = "1048576";
|
||||
}
|
||||
];
|
||||
|
||||
# Only install the docs I use
|
||||
documentation.enable = true;
|
||||
documentation.nixos.enable = false;
|
||||
documentation.man.enable = true;
|
||||
documentation.info.enable = false;
|
||||
documentation.doc.enable = false;
|
||||
|
||||
}
|
||||
|
|
|
@ -3,8 +3,9 @@ let
|
|||
ifTheyExist = groups: builtins.filter (group: builtins.hasAttr group config.users.groups) groups;
|
||||
in
|
||||
{
|
||||
imports = [ ]
|
||||
++ lib.optionals (desktop != null) [
|
||||
imports = [
|
||||
inputs.vscode-server.nixosModules.default
|
||||
] ++ lib.optionals (desktop != null) [
|
||||
../../desktop/chromium.nix
|
||||
../../desktop/chromium-extensions.nix
|
||||
../../desktop/obs-studio.nix
|
||||
|
|
Loading…
Reference in a new issue