a dotfile but it's really big
0
fork

Configure Feed

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

nixfmt + update niri for new desk layout

karitham.dev 1f1a0bc8 ec11d412

verified
+10 -6
+1 -1
modules/desktop/wm/hyprlock.nix
··· 100 100 hide_input = false; 101 101 check_color = "$accent"; 102 102 fail_color = "$red"; 103 - fail_text = ''<i>$FAIL <b>($ATTEMPTS)</b></i>''; 103 + fail_text = "<i>$FAIL <b>($ATTEMPTS)</b></i>"; 104 104 capslock_color = "$yellow"; 105 105 position = "0, -47"; 106 106 halign = "center";
+8 -4
modules/desktop/wm/niri.nix
··· 84 84 } 85 85 ]; 86 86 87 - outputs = rec { 87 + outputs = { 88 88 eDP-1 = { 89 - mode = null; 89 + # defaults for kiwi 90 + mode = { 91 + width = 1920; 92 + height = 1200; 93 + }; 90 94 position = { 91 - x = HDMI-A-1.mode.width; 95 + x = 0; 92 96 y = 0; 93 97 }; 94 98 }; ··· 98 102 height = 1440; 99 103 }; 100 104 position = { 101 - x = 0; 105 + x = config.programs.niri.settings.outputs.eDP-1.mode.width; 102 106 y = 0; 103 107 }; 104 108 };
+1 -1
modules/dev/shell/starship.nix
··· 91 91 }; 92 92 custom = { 93 93 jj = { 94 - command = ''${lib.getExe' inputs'.starship-jj.packages.default "starship-jj"} --ignore-working-copy starship prompt''; 94 + command = "${lib.getExe' inputs'.starship-jj.packages.default "starship-jj"} --ignore-working-copy starship prompt"; 95 95 format = "[$symbol](blue bold) $output"; 96 96 symbol = "󱗆"; 97 97 when = "jj root --ignore-working-copy";