C-c-c-changes

This commit is contained in:
kat witch 2022-02-14 21:29:56 +00:00 committed by kat
parent 310b1ccf1e
commit e9e4a844f5
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
5 changed files with 25 additions and 7 deletions

View file

@ -149,6 +149,7 @@
users.users.kat.extraGroups = singleton "openrazer"; users.users.kat.extraGroups = singleton "openrazer";
hardware = { hardware = {
displays = { displays = {
"HDMI-A-1" = { "HDMI-A-1" = {
@ -434,9 +435,20 @@
listen.endpoints = [ "tcp://0.0.0.0:0" ]; listen.endpoints = [ "tcp://0.0.0.0:0" ];
}; };
firewall = { firewall = {
public.interfaces = [ "br" "enp34s0" ]; public = {
interfaces = [ "br" "enp34s0" ];
};
private = { private = {
interfaces = singleton "yggdrasil"; interfaces = singleton "yggdrasil";
tcp = {
ports = [
8096
];
ranges = [{
from = 32768;
to = 60999;
}];
};
}; };
}; };
}; };

@ -1 +1 @@
Subproject commit 71675801b201ce95824ce3db76eeb37558de5b88 Subproject commit 323f3360be9b09dd2359fd423f235edfafebc9d0

View file

@ -34,9 +34,9 @@ with lib;
enable = true; enable = true;
}; };
scripts = with pkgs.weechatScripts; [ scripts = with pkgs.weechatScripts; [
go weechat-go
auto_away auto_away
autosort weechat-autosort
parse_relayed_msg parse_relayed_msg
colorize_nicks colorize_nicks
unread_buffer unread_buffer

View file

@ -5,7 +5,6 @@
_1password _1password
btop btop
bitwarden bitwarden
obsidian
discord discord
exiftool exiftool
thunderbird thunderbird

View file

@ -7,7 +7,14 @@
fi fi
''; '';
services.i3gopher = { enable = true; }; services = {
i3gopher.enable = true;
screen-locker = {
enable = true;
lockCmd = "${pkgs.i3lock-fancy}/bin/i3lock-fancy -n";
xautolock.enable = true;
};
};
home.file.".xinitrc".text = '' home.file.".xinitrc".text = ''
exec ~/.xsession exec ~/.xsession
@ -51,7 +58,7 @@
]; ];
workspaceBindings' = map (lib.mapAttrsToList bindsym) workspaceBindings; workspaceBindings' = map (lib.mapAttrsToList bindsym) workspaceBindings;
workspaceBindingsStr = lib.concatStringsSep "\n" (lib.flatten workspaceBindings'); workspaceBindingsStr = lib.concatStringsSep "\n" (lib.flatten workspaceBindings');
lockCommand = "${pkgs.i3lock}/bin/i3lock -e -u -c 111111"; lockCommand = "${pkgs.i3lock-blur}/bin/i3lock-color -n";
in in
{ {
enable = true; enable = true;