Compare commits
4 Commits
2a63a01ce3
...
023007dc79
| Author | SHA1 | Date | |
|---|---|---|---|
| 023007dc79 | |||
| 962aadd77b | |||
| cb2388c3c6 | |||
| dca64dd6c2 |
@@ -3,10 +3,22 @@
|
||||
imports = [
|
||||
../../modules/nixos/desktop.nix
|
||||
|
||||
../../modules/nixos/ssh.nix
|
||||
./hardware-configuration.nix
|
||||
./variables.nix
|
||||
];
|
||||
|
||||
networking = {
|
||||
interfaces = {
|
||||
enp5s0 = {
|
||||
wakeOnLan.enable = true;
|
||||
};
|
||||
};
|
||||
firewall = {
|
||||
allowedUDPPorts = [ 9 ];
|
||||
};
|
||||
};
|
||||
|
||||
home-manager.users."${config.var.username}" = import ./home.nix;
|
||||
|
||||
system.stateVersion = "24.05";
|
||||
|
||||
@@ -89,6 +89,8 @@
|
||||
cmatrix
|
||||
|
||||
libreoffice-qt6-fresh
|
||||
|
||||
trash-cli
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -60,6 +60,8 @@ let
|
||||
typstyle
|
||||
|
||||
ltex-ls-plus
|
||||
|
||||
harper
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
@@ -78,7 +78,7 @@ require("lz.n").load({
|
||||
-- 1. Setup Diagnostics (Visuals)
|
||||
vim.diagnostic.config({
|
||||
severity_sort = true,
|
||||
underline = { severity = vim.diagnostic.severity.ERROR },
|
||||
-- underline = { severity = vim.diagnostic.severity.ERROR },
|
||||
signs = {
|
||||
text = {
|
||||
[vim.diagnostic.severity.ERROR] = " ",
|
||||
@@ -171,14 +171,16 @@ require("lz.n").load({
|
||||
})
|
||||
vim.lsp.enable("tinymist")
|
||||
|
||||
vim.lsp.config("ltex_plus", {
|
||||
settings = {
|
||||
ltex = {
|
||||
language = "nl",
|
||||
},
|
||||
},
|
||||
})
|
||||
vim.lsp.enable("ltex_plus")
|
||||
-- vim.lsp.config("ltex_plus", {
|
||||
-- settings = {
|
||||
-- ltex = {
|
||||
-- language = "nl",
|
||||
-- },
|
||||
-- },
|
||||
-- })
|
||||
-- vim.lsp.enable("ltex_plus")
|
||||
|
||||
vim.lsp.enable("harper_ls")
|
||||
end,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -52,7 +52,7 @@ in
|
||||
path = syncPath;
|
||||
devices = builtins.attrNames devices; # Share with all defined devices
|
||||
# Ensure new files are readable by the group (chmod 770 approx)
|
||||
ignorePerms = false;
|
||||
ignorePerms = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user