Compare commits
No commits in common. "46d9e5c8296431c39e6468a1d74dc74388d0fdef" and "9f3a8ac2bd7a820fab4ffd2b8a468a68298abb03" have entirely different histories.
46d9e5c829
...
9f3a8ac2bd
7 changed files with 10 additions and 13 deletions
|
|
@ -1,8 +1,11 @@
|
|||
{ flake-parts
|
||||
{ self
|
||||
, flake-parts
|
||||
, futils
|
||||
, ...
|
||||
} @ inputs:
|
||||
let
|
||||
inherit (self) lib;
|
||||
|
||||
mySystems = futils.lib.defaultSystems;
|
||||
in
|
||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Nix related settings
|
||||
{ config, inputs, lib, pkgs, ... }:
|
||||
{ config, inputs, lib, options, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.home.nix;
|
||||
|
||||
|
|
|
|||
|
|
@ -15,13 +15,6 @@ 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,
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ in
|
|||
path = "${config.xdg.dataHome}/zsh/zsh_history";
|
||||
};
|
||||
|
||||
plugins = [
|
||||
plugins = with pkgs; [
|
||||
{
|
||||
name = "fast-syntax-highlighting";
|
||||
file = "share/zsh/site-functions/fast-syntax-highlighting.plugin.zsh";
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ in
|
|||
};
|
||||
|
||||
# same as above, but listening on the federation port
|
||||
"matrix.${domain}_federation" = {
|
||||
"matrix.${domain}_federation" = rec {
|
||||
onlySSL = true;
|
||||
serverName = "matrix.${domain}";
|
||||
useACMEHost = domain;
|
||||
|
|
@ -164,6 +164,7 @@ in
|
|||
{ addr = "0.0.0.0"; port = federationPort.public; ssl = true; }
|
||||
{ addr = "[::]"; port = federationPort.public; ssl = true; }
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
"${domain}" = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Podman related settings
|
||||
{ config, lib, ... }:
|
||||
{ config, lib, options, ... }:
|
||||
let
|
||||
cfg = config.my.system.podman;
|
||||
in
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, gawk, stdenvNoCC, unified-hosts-lists }:
|
||||
stdenvNoCC.mkDerivation {
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
name = "unbound-zones-adblock";
|
||||
version = unified-hosts-lists.version;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue