Compare commits
7 commits
9f3a8ac2bd
...
46d9e5c829
| Author | SHA1 | Date | |
|---|---|---|---|
| 46d9e5c829 | |||
| b9d6115994 | |||
| beeafe5e33 | |||
| c19baeb19d | |||
| 62d9359eb7 | |||
| 85e31e5d6c | |||
| 185b1d5490 |
7 changed files with 13 additions and 10 deletions
|
|
@ -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; } {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Nix related settings
|
||||
{ config, inputs, lib, options, pkgs, ... }:
|
||||
{ config, inputs, lib, pkgs, ... }:
|
||||
let
|
||||
cfg = config.my.home.nix;
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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}" = {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# Podman related settings
|
||||
{ config, lib, options, ... }:
|
||||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.my.system.podman;
|
||||
in
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{ lib, gawk, stdenvNoCC, unified-hosts-lists }:
|
||||
stdenvNoCC.mkDerivation rec {
|
||||
stdenvNoCC.mkDerivation {
|
||||
name = "unbound-zones-adblock";
|
||||
version = unified-hosts-lists.version;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue