sunshine & vscode splitted to personal modules
This commit is contained in:
@@ -39,7 +39,6 @@
|
||||
inkscape
|
||||
flameshot
|
||||
thunderbird
|
||||
vscode-fhs
|
||||
gcc
|
||||
python312
|
||||
python312Packages.nsz
|
||||
|
||||
12
apps/sunshine.nix
Normal file
12
apps/sunshine.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
services.sunshine = {
|
||||
enable = true;
|
||||
autoStart = true;
|
||||
capSysAdmin = true; # only needed for Wayland -- omit this when using with Xorg
|
||||
openFirewall = true;
|
||||
};
|
||||
environment.systemPackages = [
|
||||
pkgs.gnome-randr
|
||||
];
|
||||
}
|
||||
28
apps/vscode.nix
Normal file
28
apps/vscode.nix
Normal file
@@ -0,0 +1,28 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
(vscode-with-extensions.override {
|
||||
vscodeExtensions = with vscode-extensions; [
|
||||
# bbenoist.nix
|
||||
ms-python.python
|
||||
ms-azuretools.vscode-docker
|
||||
ms-vscode-remote.remote-ssh
|
||||
vscode-extensions.ms-vscode-remote.remote-containers
|
||||
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
|
||||
{
|
||||
name = "claude-dev";
|
||||
publisher = "saoudrizwan";
|
||||
version = "3.71.0";
|
||||
sha256 = "TzEydphPZ/OmIRJYslFJuk26f97mcIukPDS0WUxMOt4=";
|
||||
}
|
||||
{
|
||||
name = "vscode-mysql-client2";
|
||||
publisher = "cweijan";
|
||||
version = "8.4.5";
|
||||
sha256 = "ypb0TeG5vVEeQIfEUfXYa3VTmP6Dqg7dQispajTBP94=";
|
||||
}
|
||||
];
|
||||
})
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user