summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2024-11-07 09:45:24 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2024-11-07 09:45:24 +0100
commitbb8c24bcd999dbeb7144a71e7430c2d39c496abf (patch)
tree405561be7dc877723845a0551d58fb5ab56ef906 /common
parent8ff46b7c5e09dde2e2bfa97ded4c39d20e621e70 (diff)
small updates
Diffstat (limited to 'common')
-rw-r--r--common/home/programs/nixvim/default.nix2
-rw-r--r--common/home/programs/nixvim/plugins/nvim-tree.nix2
-rw-r--r--common/users.nix19
3 files changed, 13 insertions, 10 deletions
diff --git a/common/home/programs/nixvim/default.nix b/common/home/programs/nixvim/default.nix
index 9c66085..d20567c 100644
--- a/common/home/programs/nixvim/default.nix
+++ b/common/home/programs/nixvim/default.nix
@@ -59,6 +59,8 @@
autoread = true;
swapfile = false;
relativenumber = true;
+ spell = true;
+ spelllang = ["en_us" "de_ch"];
};
clipboard = {
diff --git a/common/home/programs/nixvim/plugins/nvim-tree.nix b/common/home/programs/nixvim/plugins/nvim-tree.nix
index dbd3256..896c025 100644
--- a/common/home/programs/nixvim/plugins/nvim-tree.nix
+++ b/common/home/programs/nixvim/plugins/nvim-tree.nix
@@ -2,6 +2,6 @@
{
enable = true;
autoClose = true;
- disableNetrw = true;
+ disableNetrw = false;
hijackCursor = true;
}
diff --git a/common/users.nix b/common/users.nix
index a0bafe5..6d0fa88 100644
--- a/common/users.nix
+++ b/common/users.nix
@@ -1,12 +1,13 @@
{ pkgs, ... }:
{
- users.n8 = {
- isNormalUser = true;
- extraGroups = [
- "wheel"
- "networkmanager"
- "ydotool"
- ];
- shell = pkgs.zsh;
- };
+ users.n8 = {
+ isNormalUser = true;
+ extraGroups = [
+ "wheel"
+ "networkmanager"
+ "ydotool"
+ "libvirtd"
+ ];
+ shell = pkgs.zsh;
+ };
}