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"
|
"quickshell": "quickshell"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1727887250,
|
"lastModified": 1728080732,
|
||||||
"narHash": "sha256-pdlBPauIA9hpqZAN6A+2KN60v8duoeukONkUbXT2/5Q=",
|
"narHash": "sha256-DCymPOQVlOEYTuBWXwb+XA0U2TYPqxHT8944ikI43qw=",
|
||||||
"ref": "refs/heads/main",
|
"ref": "refs/heads/main",
|
||||||
"rev": "05c0df347812c3dc0db21089a47f2da27e119bd2",
|
"rev": "ddcbaedce4398689d1f38d09648db7f6cfff0c41",
|
||||||
"revCount": 54,
|
"revCount": 55,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://codeberg.org/nydragon/nysh"
|
"url": "https://codeberg.org/nydragon/nysh"
|
||||||
},
|
},
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
powerKey = "hibernate";
|
powerKey = "hibernate";
|
||||||
};
|
};
|
||||||
#: }}}
|
#: }}}
|
||||||
|
|
||||||
xdg = {
|
xdg = {
|
||||||
portal.enable = true;
|
portal.enable = true;
|
||||||
mime.enable = true;
|
mime.enable = true;
|
||||||
|
@ -36,6 +37,10 @@
|
||||||
wifi.enable = true;
|
wifi.enable = true;
|
||||||
bluetooth.enable = true;
|
bluetooth.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.nysh.enable = true;
|
||||||
|
|
||||||
|
media.enableAll = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
@ -53,6 +58,10 @@
|
||||||
"https://hs.ccnlc.eu"
|
"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 = {
|
programs = {
|
||||||
|
@ -86,16 +95,11 @@
|
||||||
"/etc/ssh/ssh_host_ed25519_key"
|
"/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 = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.gnome.gnome-keyring.enable = true;
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
fish
|
fish
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
|
@ -108,7 +112,5 @@
|
||||||
|
|
||||||
services.rpcbind.enable = true; # necessary for nfs
|
services.rpcbind.enable = true; # necessary for nfs
|
||||||
|
|
||||||
modules.media.enableAll = true;
|
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,10 @@ in
|
||||||
tags = [ "device_pc" ];
|
tags = [ "device_pc" ];
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
ids = [ "100.64.0.2" ];
|
ids = [
|
||||||
|
"100.64.0.2"
|
||||||
|
"192.168.178.53"
|
||||||
|
];
|
||||||
name = "oneplus9";
|
name = "oneplus9";
|
||||||
tags = [ "device_phone" ];
|
tags = [ "device_phone" ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
inherit (lib) mkEnableOption mkOption;
|
inherit (lib) mkEnableOption mkOption mkIf;
|
||||||
inherit (lib.types) package;
|
inherit (lib.types) package;
|
||||||
cfg = config.modules.services.nysh;
|
cfg = config.modules.services.nysh;
|
||||||
in
|
in
|
||||||
|
@ -18,9 +18,12 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = mkIf cfg.enable {
|
||||||
systemd.user.services.nysh = {
|
systemd.user.services.nysh = {
|
||||||
wantedBy = [ "graphical-session.target" ];
|
wantedBy = [
|
||||||
|
"multi-user.target"
|
||||||
|
"graphical-session.target"
|
||||||
|
];
|
||||||
|
|
||||||
unitConfig = {
|
unitConfig = {
|
||||||
After = [ "graphical-session-pre.target" ];
|
After = [ "graphical-session-pre.target" ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue