1
0
Fork 0

Remove some unfree softwares and improve memo config

This commit is contained in:
Malte Brandy 2022-02-15 16:05:47 +01:00
parent c1bb844026
commit 3d8b8cb39c
3 changed files with 8 additions and 3 deletions

View file

@ -15,8 +15,6 @@
# web
chromium
skypeforlinux google-chrome
mumble upower speedtest-cli acpi
anki

View file

@ -50,6 +50,13 @@
"extensions.autoUpdate" = false;
"extensions.autoCheckUpdates" = false;
"local-history.path" = "~/.volatile/vscode-local-history/";
"memo.links.rules" = [
{
"rule" = "\\.md$";
"comment" = "All notes";
"folder" = "$CURRENT_FILE_DIRECTORY";
}
];
};
};
}

View file

@ -4,6 +4,6 @@ let
unstableUnfree = import self.sources.nixos-unstable { config.allowUnfree = true; };
in
{
inherit (unfree) discord factorio zoom-us skypeforlinux google-chrome minecraft teamviewer steam;
inherit (unfree) discord zoom-us minecraft teamviewer steam;
inherit (unstableUnfree) minecraft-server;
}