1
0
Fork 0

improvements

This commit is contained in:
Lukas Wurzinger 2024-02-14 23:06:49 +01:00
parent 3ab713a5b3
commit 4bc84394c4
23 changed files with 289 additions and 74 deletions

View file

@ -1,3 +0,0 @@
{pkgs, ...}: {
environment.systemPackages = [pkgs.vscodium-fhs];
}

View file

@ -1,6 +1,5 @@
{
imports = [
./codium.nix
./compatibility.nix
./docker.nix
./fish.nix
@ -17,5 +16,6 @@
./plasma.nix
./printing.nix
./syncthing.nix
./vscode.nix
];
}

View file

@ -1,5 +1,8 @@
{
{pkgs, ...}: {
environment.persistence."/persist".directories = ["/etc/mullvad-vpn"];
services.mullvad-vpn.enable = true;
services.mullvad-vpn = {
enable = true;
package = pkgs.mullvad-vpn;
};
}

View file

@ -2,7 +2,6 @@
environment.persistence."/persist".directories = ["/etc/NetworkManager"];
services.resolved.enable = true;
services.opensnitch.enable = true;
networking = {
networkmanager = {

3
class/desktop/vscode.nix Normal file
View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
environment.systemPackages = [pkgs.vscode-fhs];
}