nvim: removed unused plugins

This commit is contained in:
Daniel Meiburg 2024-04-17 23:22:19 +02:00
parent 4ba4cb0d5d
commit 6fa9a44bb9
Signed by: dm
GPG Key ID: E5827ECFFE0AA4F2
7 changed files with 26 additions and 28 deletions

View File

@ -1,5 +1,8 @@
Build and switch to new system config with: Build and switch to new system config with:
```sh ```sh
sudo nixos-rebuild switch --flake .# sudo nixos-rebuild switch --flake ".?submodules=1"
``` ```
Build remote:

@ -1 +1 @@
Subproject commit f91ac0b0ac7dd84ef20c8becc9b9690a3d882018 Subproject commit 0ef5669a6560b19dce05cfb1c10382aa59b313f0

View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1710888565, "lastModified": 1712386041,
"narHash": "sha256-s9Hi4RHhc6yut4EcYD50sZWRDKsugBJHSbON8KFwoTw=", "narHash": "sha256-dA82pOMQNnCJMAsPG7AXG35VmCSMZsJHTFlTHizpKWQ=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "f33900124c23c4eca5831b9b5eb32ea5894375ce", "rev": "d6bb9f934f2870e5cbc5b94c79e9db22246141ff",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1711460390, "lastModified": 1713013257,
"narHash": "sha256-akSgjDZL6pVHEfSE6sz1DNSXuYX6hq+P/1Z5IoYWs7E=", "narHash": "sha256-ZEfGB3YCBVggvk0BQIqVY7J8XF/9jxQ68fCca6nib+8=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "44733514b72e732bd49f5511bd0203dea9b9a434", "rev": "90055d5e616bd943795d38808c94dbf0dd35abe8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -4,6 +4,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
fd # find alternative fd # find alternative
git git
git-lfs
htop htop
neovim neovim
nmap nmap

View File

@ -2,11 +2,9 @@
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
anytype
calc calc
conda conda
dig dig
direnv
ffmpeg ffmpeg
firefox-wayland firefox-wayland
fuzzel fuzzel
@ -73,9 +71,15 @@
enable = true; enable = true;
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
}; };
programs.browserpass = { programs = {
browserpass = {
enable = true; enable = true;
}; };
direnv = {
enable = true;
nix-direnv.enable = true;
};
};
services.mako = { services.mako = {
enable = true; enable = true;
}; };

View File

@ -60,20 +60,10 @@
user = "dm"; user = "dm";
dataDir = "/home/dm/Documents"; dataDir = "/home/dm/Documents";
configDir = "/home/dm/Documents/.config/syncthing"; configDir = "/home/dm/Documents/.config/syncthing";
overrideDevices = true; # overrides any devices added or deleted through the WebUI
overrideFolders = true; # overrides any folders added or deleted through the WebUI
settings = {
devices = {
"phone" = { id = "P6ZJ5WK-SBKAYYS-IYBBA37-ARCGHFA-3JJVOLH-2B3PO57-GA3EQKZ-ULWDQAV"; };
};
folders = {
"notes" = { # Name of folder in Syncthing, also the folder ID
path = "/home/dm/Documents/notes"; # Which folder to add to Syncthing
devices = [ "phone" ]; # Which devices to share the folder with
};
};
};
}; };
# syncthing ports
networking.firewall.allowedTCPPorts = [ 22000 ];
networking.firewall.allowedUDPPorts = [ 22000 21027 ];
# automount usb # automount usb
services.gvfs.enable = true; services.gvfs.enable = true;