Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add flyctl

+5 -4
-2
home/desktop/hyprland.nix
··· 7 7 hyprland.homeManagerModules.default 8 8 ]; 9 9 10 - services.playerctld.enable = true; 11 - 12 10 wayland.windowManager.hyprland = { 13 11 enable = true; 14 12 xwayland = {
+2 -1
home/desktop/notifications.nix
··· 32 32 .control-center { 33 33 background: ${shell}; 34 34 border: 1px solid ${lightStroke}; 35 - margin: 10px; 35 + margin: 8px; 36 36 padding: 1rem; 37 37 border-radius: 1rem; 38 38 color: ${colors.white.gui}; ··· 45 45 border-radius: 1rem; 46 46 color: ${colors.white.gui}; 47 47 box-shadow: none; 48 + font-size: .9rem; 48 49 } 49 50 50 51 .notification > * {
+1
home/desktop/waybar.nix
··· 9 9 network-manager-applet.enable = true; 10 10 blueman-applet.enable = true; 11 11 mpris-proxy.enable = true; 12 + playerctld.enable = true; 12 13 }; 13 14 14 15 programs.waybar = {
+1
machines/sprite/configuration.nix
··· 71 71 temporal 72 72 dive 73 73 caddy 74 + flyctl 74 75 ]; 75 76 }
+1 -1
modules/desktop/session.nix
··· 39 39 } 40 40 ''; 41 41 hyprland_shell = pkgs.writeShellScript "hyprland-shell" '' 42 - exec zsh -c "systemd-cat -t hyprland ${pkgs.hyprland}/bin/Hyprland" 42 + exec systemd-cat -t hyprland ${pkgs.hyprland}/bin/Hyprland 43 43 ''; 44 44 hyprland_login = pkgs.writeShellScript "hyprland-login" '' 45 45 exec ${pkgs.hyprland}/bin/Hyprland --config ${hyprland_config};