mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
ssh3: init packages
This commit is contained in:
parent
ea48055ebb
commit
dab85522ba
10 changed files with 101 additions and 33 deletions
|
@ -39,9 +39,9 @@
|
|||
# messaging
|
||||
discord
|
||||
tdesktop
|
||||
element-desktop
|
||||
mattermost-desktop
|
||||
gajim
|
||||
gomuks
|
||||
fractal
|
||||
|
||||
# games
|
||||
prismlauncher
|
||||
|
@ -70,6 +70,7 @@
|
|||
gcc
|
||||
nodejs_20
|
||||
gnumake
|
||||
go
|
||||
|
||||
# libs
|
||||
libyubikey
|
||||
|
|
|
@ -49,6 +49,15 @@ in
|
|||
"quitte" = {
|
||||
hostname = "quitte.ifsr.de";
|
||||
user = "root";
|
||||
extraOptions = {
|
||||
RequestTTY = "yes";
|
||||
RemoteCommand = "zsh -i";
|
||||
};
|
||||
|
||||
};
|
||||
"quitte-notty" = {
|
||||
hostname = "quitte.ifsr.de";
|
||||
user = "root";
|
||||
};
|
||||
"durian" = {
|
||||
hostname = "durian.ifsr.de";
|
||||
|
|
|
@ -1,27 +1,16 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
systemd.user = {
|
||||
services.breaktimer = {
|
||||
services.ianny = {
|
||||
Unit = {
|
||||
Description = "Simple notification to take a break";
|
||||
Description = "Ianny break timer";
|
||||
After = [ "graphical-session-pre.target" ];
|
||||
PartOf = [ "graphical-session.target" ];
|
||||
};
|
||||
Service = {
|
||||
Type = "oneshot";
|
||||
ExecStart = ''${lib.getExe pkgs.libnotify} -i clock -e "It's time for a break" "Relax your eyes"'';
|
||||
ExecStart = "${pkgs.ianny}/bin/ianny";
|
||||
};
|
||||
};
|
||||
timers.breaktimer = {
|
||||
Unit = {
|
||||
Description = "Timer for the break notification";
|
||||
};
|
||||
Timer = {
|
||||
OnCalendar = "*:0/20";
|
||||
Unit = "breaktimer.service";
|
||||
};
|
||||
Install = {
|
||||
WantedBy = [ "timers.target" ];
|
||||
};
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -51,7 +51,8 @@
|
|||
|
||||
riverctl map-pointer normal Super BTN_RIGHT resize-view
|
||||
|
||||
riverctl map normal Alt Space spawn "${pkgs.fuzzel}/bin/fuzzel -w 50"
|
||||
riverctl map normal Alt Space spawn "${pkgs.fuzzel}/bin/fuzzel"
|
||||
riverctl map normal Alt A spawn "${pkgs.wofi-emoji}/bin/wofi-emoji";
|
||||
riverctl map normal Super Space toggle-float
|
||||
|
||||
for i in $(seq 1 9)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue