chore: various fixes

- clean brontes config file
- fix context menus for nysh
- add adguard id for persistent client
This commit is contained in:
Nydragon 2024-10-05 02:21:56 +02:00
parent 753377fc3f
commit 90f053e027
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
4 changed files with 23 additions and 15 deletions

8
flake.lock generated
View file

@ -455,11 +455,11 @@
"quickshell": "quickshell"
},
"locked": {
"lastModified": 1727887250,
"narHash": "sha256-pdlBPauIA9hpqZAN6A+2KN60v8duoeukONkUbXT2/5Q=",
"lastModified": 1728080732,
"narHash": "sha256-DCymPOQVlOEYTuBWXwb+XA0U2TYPqxHT8944ikI43qw=",
"ref": "refs/heads/main",
"rev": "05c0df347812c3dc0db21089a47f2da27e119bd2",
"revCount": 54,
"rev": "ddcbaedce4398689d1f38d09648db7f6cfff0c41",
"revCount": 55,
"type": "git",
"url": "https://codeberg.org/nydragon/nysh"
},

View file

@ -26,6 +26,7 @@
powerKey = "hibernate";
};
#: }}}
xdg = {
portal.enable = true;
mime.enable = true;
@ -36,6 +37,10 @@
wifi.enable = true;
bluetooth.enable = true;
};
services.nysh.enable = true;
media.enableAll = true;
};
services = {
@ -53,6 +58,10 @@
"https://hs.ccnlc.eu"
];
};
# Necessary for Nautilus to display trash, DVDs and for gnome-disk-utility to show file systems
gvfs.enable = true;
gnome.gnome-keyring.enable = true;
};
programs = {
@ -86,16 +95,11 @@
"/etc/ssh/ssh_host_ed25519_key"
];
# Necessary for Nautilus to display trash, DVDs and for gnome-disk-utility to show file systems
services.gvfs.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
services.gnome.gnome-keyring.enable = true;
environment.systemPackages = with pkgs; [
fish
wireguard-tools
@ -108,7 +112,5 @@
services.rpcbind.enable = true; # necessary for nfs
modules.media.enableAll = true;
system.stateVersion = "24.05";
}

View file

@ -39,7 +39,10 @@ in
tags = [ "device_pc" ];
}
{
ids = [ "100.64.0.2" ];
ids = [
"100.64.0.2"
"192.168.178.53"
];
name = "oneplus9";
tags = [ "device_phone" ];
}

View file

@ -5,7 +5,7 @@
...
}:
let
inherit (lib) mkEnableOption mkOption;
inherit (lib) mkEnableOption mkOption mkIf;
inherit (lib.types) package;
cfg = config.modules.services.nysh;
in
@ -18,9 +18,12 @@ in
};
};
config = {
config = mkIf cfg.enable {
systemd.user.services.nysh = {
wantedBy = [ "graphical-session.target" ];
wantedBy = [
"multi-user.target"
"graphical-session.target"
];
unitConfig = {
After = [ "graphical-session-pre.target" ];