chore: various fixes
- clean brontes config file - fix context menus for nysh - add adguard id for persistent client
This commit is contained in:
parent
753377fc3f
commit
90f053e027
4 changed files with 23 additions and 15 deletions
8
flake.lock
generated
8
flake.lock
generated
|
@ -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"
|
||||
},
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
|
@ -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" ];
|
||||
}
|
||||
|
|
|
@ -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" ];
|
||||
|
|
Loading…
Add table
Reference in a new issue