feat: add nysh as systemd unit and remove swaync
This commit is contained in:
parent
68aa9ba923
commit
a48eb45a48
9 changed files with 70 additions and 22 deletions
|
@ -20,12 +20,9 @@ lib.mkIf osConfig.programs.hyprland.enable {
|
||||||
];
|
];
|
||||||
|
|
||||||
exec-once = [
|
exec-once = [
|
||||||
"${pkgs.swaynotificationcenter}/bin/swaync"
|
|
||||||
"${pkgs.nextcloud-client}/bin/nextcloud --background"
|
"${pkgs.nextcloud-client}/bin/nextcloud --background"
|
||||||
"${pkgs.kdeconnect}/bin/kdeconnect-indicator"
|
"${pkgs.kdeconnect}/bin/kdeconnect-indicator"
|
||||||
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"
|
"${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"
|
||||||
"${pkgs.waybar}/bin/waybar"
|
|
||||||
"${pkgs.nysh}/bin/nysh"
|
|
||||||
|
|
||||||
# keepassxc ignores themeing and doesnt show up in system tray otherwise
|
# keepassxc ignores themeing and doesnt show up in system tray otherwise
|
||||||
# Dirty solution but hey
|
# Dirty solution but hey
|
||||||
|
|
|
@ -115,19 +115,13 @@ lib.mkIf osConfig.programs.sway.enable {
|
||||||
#: }}}
|
#: }}}
|
||||||
#: Startup {{{
|
#: Startup {{{
|
||||||
startup = [
|
startup = [
|
||||||
{ command = "${pkgs.swaynotificationcenter}/bin/swaync"; }
|
|
||||||
{ command = "${pkgs.nextcloud-client}/bin/nextcloud --background"; }
|
{ command = "${pkgs.nextcloud-client}/bin/nextcloud --background"; }
|
||||||
{ command = "${pkgs.kdeconnect}/bin/kdeconnect-indicator"; }
|
{ command = "${pkgs.kdeconnect}/bin/kdeconnect-indicator"; }
|
||||||
{ command = "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; }
|
{ command = "${pkgs.protonmail-bridge-gui}/bin/protonmail-bridge-gui --no-window"; }
|
||||||
{ command = "${pkgs.nysh}/bin/nysh"; }
|
|
||||||
{
|
{
|
||||||
command = "${pkgs.scripts.set-background}/bin/set-background -f ${wallpaper}";
|
command = "${pkgs.scripts.set-background}/bin/set-background -f ${wallpaper}";
|
||||||
always = true;
|
always = true;
|
||||||
}
|
}
|
||||||
{
|
|
||||||
command = "${pkgs.swaynotificationcenter}/bin/swaync-client --reload-config --reload-css";
|
|
||||||
always = true;
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
#: }}}
|
#: }}}
|
||||||
assigns = {
|
assigns = {
|
||||||
|
|
|
@ -103,7 +103,6 @@
|
||||||
htop
|
htop
|
||||||
eza
|
eza
|
||||||
bat
|
bat
|
||||||
swaynotificationcenter
|
|
||||||
nfs-utils
|
nfs-utils
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,6 @@
|
||||||
services = {
|
services = {
|
||||||
blueman-applet.enable = true;
|
blueman-applet.enable = true;
|
||||||
swayidle.enable = true;
|
swayidle.enable = true;
|
||||||
swaync.enable = true;
|
|
||||||
syncthing.enable = true;
|
syncthing.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
./home.nix
|
./home.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
modules.system = {
|
modules = {
|
||||||
|
system = {
|
||||||
networking = {
|
networking = {
|
||||||
bluetooth.enable = true;
|
bluetooth.enable = true;
|
||||||
wifi.enable = true;
|
wifi.enable = true;
|
||||||
|
@ -26,6 +27,11 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services = {
|
||||||
|
nysh.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
|
@ -39,7 +39,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
swaync.enable = true;
|
|
||||||
blueman-applet.enable = true;
|
blueman-applet.enable = true;
|
||||||
swayidle.enable = true;
|
swayidle.enable = true;
|
||||||
syncthing.enable = true;
|
syncthing.enable = true;
|
||||||
|
@ -95,6 +94,8 @@
|
||||||
scripts.genswitch
|
scripts.genswitch
|
||||||
scripts.gentest
|
scripts.gentest
|
||||||
scripts.editsym
|
scripts.editsym
|
||||||
|
scripts.deployswitch
|
||||||
|
scripts.deploytest
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
self,
|
self,
|
||||||
inputs,
|
inputs,
|
||||||
lib,
|
inputs',
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
useGlobalPkgs = true;
|
useGlobalPkgs = true;
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit self inputs;
|
inherit self inputs inputs';
|
||||||
};
|
};
|
||||||
verbose = true;
|
verbose = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./media.nix
|
./media.nix
|
||||||
|
./nysh.nix
|
||||||
|
|
||||||
./system
|
./system
|
||||||
./container
|
./container
|
||||||
./server
|
./server
|
||||||
|
|
50
options/nysh.nix
Normal file
50
options/nysh.nix
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
inputs',
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkEnableOption mkOption;
|
||||||
|
inherit (lib.types) package;
|
||||||
|
cfg = config.modules.services.nysh;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.services.nysh = {
|
||||||
|
enable = mkEnableOption "nysh";
|
||||||
|
package = mkOption {
|
||||||
|
type = package;
|
||||||
|
default = inputs'.nysh.packages.nysh;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = {
|
||||||
|
systemd.user.services.nysh = {
|
||||||
|
wantedBy = [ "graphical-session.target" ];
|
||||||
|
|
||||||
|
unitConfig = {
|
||||||
|
After = [ "graphical-session-pre.target" ];
|
||||||
|
PartOf = [ "graphical-session.target" ];
|
||||||
|
};
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "simple";
|
||||||
|
ExecStart = "/bin/sh -lc ${cfg.package}/bin/nysh";
|
||||||
|
Restart = "on-failure";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# systemd.user.services.nysh = {
|
||||||
|
#Install.WantedBy = [ "graphical-session.target" ];
|
||||||
|
|
||||||
|
#Unit = {
|
||||||
|
#After = [ "graphical-session-pre.target" ];
|
||||||
|
#PartOf = [ "graphical-session.target" ];
|
||||||
|
#};
|
||||||
|
#Service = {
|
||||||
|
#Type = "simple";
|
||||||
|
#ExecStart = "/bin/sh -lc ${cfg.package}/bin/nysh";
|
||||||
|
#Restart = "on-failure";
|
||||||
|
#};
|
||||||
|
#};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue