diff --git a/home/default.nix b/home/default.nix index ab362e4..f1dca0b 100644 --- a/home/default.nix +++ b/home/default.nix @@ -92,8 +92,12 @@ in { packages = with pkgs; [ # Add your global packages here + mpv + sxiv + feh duralumin duralumin-keygen + ranger neovim bottom git diff --git a/home/git-ssh.nix b/home/git-ssh.nix index 790395f..1c408d0 100644 --- a/home/git-ssh.nix +++ b/home/git-ssh.nix @@ -50,9 +50,10 @@ identityFile = "~/.ssh/id_ed25519_nirgendwo"; addKeysToAgent = "yes"; }; - "github.com:janis-bhm" = { - host = "github.com:janis-bhm"; + "github-janis-bhm" = { + host = "github-janis-bhm"; hostname = "github.com"; + user = "git"; identityFile = "~/.ssh/duralumin_janis-github"; addKeysToAgent = "yes"; }; diff --git a/home/hyprlock_idle.nix b/home/hyprlock_idle.nix index ea07cc3..0ad7153 100644 --- a/home/hyprlock_idle.nix +++ b/home/hyprlock_idle.nix @@ -43,29 +43,30 @@ valign = "center"; }; - # DATE - label-date = { - monitor = ""; - text = ''cmd[update:1000] echo "''$(${pkgs.coreutils}/bin/date +"%A, %B %d")"''; - color = "rgba(242, 243, 244, 0.75)"; - font_size = 22; - font_family = "JetBrains Mono"; - position = "0, 300"; - halign = "center"; - valign = "center"; - }; - - # TIME - label-time = { - monitor = ""; - text = ''cmd[update:1000] echo "''$(${pkgs.coreutils} +"%-I:%M")"''; - color = "rgba(242, 243, 244, 0.75)"; - font_size = 95; - font_family = "JetBrains Mono Extrabold"; - position = "0, 200"; - halign = "center"; - valign = "center"; - }; + label = [ + # DATE + { + monitor = ""; + text = ''cmd[update:1000] echo "''$(${pkgs.coreutils}/bin/date +"%A, %B %d")"''; + color = "rgba(242, 243, 244, 0.75)"; + font_size = 22; + font_family = "JetBrains Mono"; + position = "0, 300"; + halign = "center"; + valign = "center"; + } + # TIME + { + monitor = ""; + text = ''cmd[update:1000] echo "''$(${pkgs.coreutils}/bin/date +"%-I:%M")"''; + color = "rgba(242, 243, 244, 0.75)"; + font_size = 95; + font_family = "JetBrains Mono Extrabold"; + position = "0, 200"; + halign = "center"; + valign = "center"; + } + ]; }; };