Compare commits

...

7 commits

7 changed files with 13 additions and 10 deletions

View file

@ -1,11 +1,8 @@
{ self
, flake-parts
{ flake-parts
, futils
, ...
} @ inputs:
let
inherit (self) lib;
mySystems = futils.lib.defaultSystems;
in
flake-parts.lib.mkFlake { inherit inputs; } {

View file

@ -1,5 +1,5 @@
# Nix related settings
{ config, inputs, lib, options, pkgs, ... }:
{ config, inputs, lib, pkgs, ... }:
let
cfg = config.my.home.nix;

View file

@ -15,6 +15,13 @@ if utils.is_executable("clangd") then
end
-- Nix
if utils.is_executable("nil") then
lspconfig.nil_ls.setup({
capabilities = capabilities,
on_attach = lsp.on_attach,
})
end
if utils.is_executable("rnix-lsp") then
lspconfig.rnix.setup({
capabilities = capabilities,

View file

@ -38,7 +38,7 @@ in
path = "${config.xdg.dataHome}/zsh/zsh_history";
};
plugins = with pkgs; [
plugins = [
{
name = "fast-syntax-highlighting";
file = "share/zsh/site-functions/fast-syntax-highlighting.plugin.zsh";

View file

@ -149,7 +149,7 @@ in
};
# same as above, but listening on the federation port
"matrix.${domain}_federation" = rec {
"matrix.${domain}_federation" = {
onlySSL = true;
serverName = "matrix.${domain}";
useACMEHost = domain;
@ -164,7 +164,6 @@ in
{ addr = "0.0.0.0"; port = federationPort.public; ssl = true; }
{ addr = "[::]"; port = federationPort.public; ssl = true; }
];
};
"${domain}" = {

View file

@ -1,5 +1,5 @@
# Podman related settings
{ config, lib, options, ... }:
{ config, lib, ... }:
let
cfg = config.my.system.podman;
in

View file

@ -1,5 +1,5 @@
{ lib, gawk, stdenvNoCC, unified-hosts-lists }:
stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation {
name = "unbound-zones-adblock";
version = unified-hosts-lists.version;