diff --git a/hosts/randolph/configuration.nix b/hosts/randolph/configuration.nix index fa848cb..1215633 100644 --- a/hosts/randolph/configuration.nix +++ b/hosts/randolph/configuration.nix @@ -62,6 +62,7 @@ allowedUDPPortRanges = [ kdeConnectPorts ]; + enable = false; }; services.resolved = { @@ -137,6 +138,7 @@ # driverless ghostscript colord + cups-brother-hll2340dw ]; logLevel = "debug"; }; diff --git a/snippets/common_home.nix b/snippets/common_home.nix index 0a1514a..1e591a5 100644 --- a/snippets/common_home.nix +++ b/snippets/common_home.nix @@ -70,7 +70,7 @@ in (with (pkgs.extend overlay); [ olympus ]) ++ [ kalker tldr htop snore ] ++ # Basic CLI/TUI utilities - [ catgirl hledger hledger-ui ] ++ # Selection of CLI/TUI apps + [ catgirl hledger hledger-ui slskd ] ++ # Selection of CLI/TUI apps [ blueman pavucontrol font-manager ] ++ # Basic graphical utilities [ libreoffice @@ -84,7 +84,6 @@ keepassxc zulip filezilla - bitwarden-desktop activate-linux remmina pinta @@ -93,6 +92,7 @@ anki butterfly deltachat-desktop + qgis ] ++ # Selection of graphical apps [ prismlauncher diff --git a/snippets/kakoune.nix b/snippets/kakoune.nix index a3c8834..e57252f 100644 --- a/snippets/kakoune.nix +++ b/snippets/kakoune.nix @@ -29,7 +29,7 @@ # When the filetype=latex option is set in a buffer context (automatically), add a new hook to build the latex file on write name = "BufSetOption"; option = "filetype=latex"; - commands = "hook buffer BufWritePost .* %{ texlab-build }"; + commands = "hook buffer BufWritePost .* %{ texlab-build; texlab-forward-search }"; } { name = "BufSetOption"; diff --git a/snippets/scanning.nix b/snippets/scanning.nix index 7be7362..5f4ebf0 100644 --- a/snippets/scanning.nix +++ b/snippets/scanning.nix @@ -3,6 +3,12 @@ { hardware.sane = { enable = true; + brscan4 = { + enable = true; + netDevices = { + home = { model = "HL-L2390DW"; ip = "10.0.0.246"; }; + }; + }; extraBackends = [ pkgs.sane-airscan pkgs.epkowa ]; };