improvements
This commit is contained in:
parent
3ab713a5b3
commit
4bc84394c4
23 changed files with 289 additions and 74 deletions
|
@ -1,3 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [pkgs.vscodium-fhs];
|
||||
}
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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
3
class/desktop/vscode.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [pkgs.vscode-fhs];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue