3 Commits

Author SHA1 Message Date
julian d84bfd4628 use network manager dns instead of resolved
Update Nix Flake / update-flake (push) Failing after 12s
2025-12-24 06:48:22 +01:00
julian fb6ac408e1 format code 2025-12-24 06:47:56 +01:00
julian f01b079931 emacs: add ltex-ls-plus language server 2025-12-24 06:47:43 +01:00
5 changed files with 16 additions and 21 deletions
+1
View File
@@ -68,6 +68,7 @@ in {
emacs-all-the-icons-fonts
frajul.typst-languagetool
ltex-ls-plus
]
++ lib.optional config.is-nixos emacs;
+1 -2
View File
@@ -3,8 +3,7 @@
pkgs,
inputs,
...
}:
{
}: {
imports = [inputs.nixvim.homeModules.nixvim];
home.sessionVariables = {
+2 -5
View File
@@ -30,12 +30,9 @@
networkmanager-openconnect
];
};
services.resolved.enable = true;
services.resolved.enable = false;
# MDNS Taken by avahi
services.resolved.extraConfig = ''
MulticastDNS=false
'';
# networking.networkmanager.dns = "none";
networking.nameservers = lib.mkDefault [
"1.1.1.1"
"8.8.8.8"
+1 -2
View File
@@ -2,8 +2,7 @@
lib,
outputs,
...
}:
{
}: {
# Apply overlays
nixpkgs = {
# TODO: apply this to hm and nixos without duplicate code
+1 -2
View File
@@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
imports = [
./hardware-configuration.nix