all repos

dotfiles @ a70cb1bcd43ee6dfd22e69c8e2100d2a4febe0b6

i use rach linux btw
6 files changed, 15 insertions(+), 15 deletions(-)
nix: formatting; mise: i dont like being on the edge; niri: everything named was a bad idea; jj: keep it short
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-03-21 14:23:47 +0200
Parent: 2ac8d41
M config/jj/config.toml
···
                45
                45
                 "closest_pushable(to)" = "heads(::to & ~description(exact:'') & (~empty() | merges()))"

              
                46
                46
                 

              
                47
                47
                 [templates]

              
                48
                
                -git_push_bookmark = '"olex/" ++ change_id.short()'

              
                
                48
                +git_push_bookmark = '"olex/" ++ change_id.shortest(6)'

              
                49
                49
                 draft_commit_description = "builtin_draft_commit_description_with_diff"

              
                50
                50
                 

              
                51
                51
                 [template-aliases]

              
M config/mise/config.toml
···
                12
                12
                 usage = "latest"

              
                13
                13
                 

              
                14
                14
                 [settings]

              
                15
                
                -experimental = true

              
                16
                15
                 go_set_gobin = false

              
                17
                16
                 go_set_gopath = false

              
                18
                17
                 go_set_goroot = false

              
                
                18
                +

              
                
                19
                +npm.package_manager = "bun"

              
                
                20
                +

              
M config/niri/config.kdl
···
                216
                216
                   Mod+Shift+Period { move-column-to-monitor-right; }

              
                217
                217
                 

              
                218
                218
                   // workspaces

              
                219
                
                -  Mod+1 { focus-workspace "one"; }

              
                220
                
                -  Mod+2 { focus-workspace "two"; }

              
                221
                
                -  Mod+3 { focus-workspace "tri"; }

              
                222
                
                -  Mod+4 { focus-workspace "laptop"; }

              
                
                219
                +  Mod+1 { focus-workspace 1; }

              
                
                220
                +  Mod+2 { focus-workspace 2; }

              
                
                221
                +  Mod+3 { focus-workspace 3; }

              
                
                222
                +  Mod+4 { focus-workspace 4; }

              
                223
                223
                   Mod+5 { focus-workspace 5; }

              
                224
                
                -  Mod+Shift+1 { move-column-to-workspace "one"; }

              
                225
                
                -  Mod+Shift+2 { move-column-to-workspace "two"; }

              
                226
                
                -  Mod+Shift+3 { move-column-to-workspace "tri"; }

              
                227
                
                -  Mod+Shift+4 { move-column-to-workspace "laptop"; }

              
                
                224
                +  Mod+Shift+1 { move-column-to-workspace 1; }

              
                
                225
                +  Mod+Shift+2 { move-column-to-workspace 2; }

              
                
                226
                +  Mod+Shift+3 { move-column-to-workspace 3; }

              
                
                227
                +  Mod+Shift+4 { move-column-to-workspace 4; }

              
                228
                228
                   Mod+Shift+5 { move-column-to-workspace 5; }

              
                229
                229
                 

              
                230
                230
                   Mod+WheelScrollDown cooldown-ms=50 { focus-workspace-down; }

              
M nix/hosts/thought/configuration.nix
···
                1
                1
                 { ... }: {

              
                2
                2
                   imports = [

              
                
                3
                +    ./digitalocean.nix

              
                3
                4
                     ./disko-config.nix

              
                4
                5
                     ./hardware-configuration.nix

              
                5
                6
                   ];

              ···
                12
                13
                   };

              
                13
                14
                 

              
                14
                15
                   swapDevices = [ {

              
                15
                
                -   device = "/swapfile";

              
                
                16
                +    device = "/swapfile";

              
                16
                17
                     size = 2048; # MB

              
                17
                18
                   } ];

              
                18
                19
                 

              
M nix/hosts/thought/default.nix
···
                1
                1
                 { ... }: {

              
                2
                2
                   imports = [

              
                3
                
                -    ./digitalocean.nix

              
                4
                3
                     ./configuration.nix

              
                5
                
                -    ./hardware-configuration.nix

              
                6
                4
                 

              
                7
                5
                     ../../modules/common.nix

              
                8
                6
                     ../../modules/users/q.nix

              
M nix/modules/users/q.nix
···
                4
                4
                     "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPLLJdkVYKZgsayw+sHanKPKZbI0RMS2CakqBCEi5Trz" # laptop

              
                5
                5
                     "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINeXccmMQ9jfLG2Z8CITaZZ+pUgYVNVYDFtmdkBHd3xk" # phone

              
                6
                6
                   ];

              
                7
                
                -in

              
                8
                
                -{

              
                
                7
                +in {

              
                9
                8
                   age.secrets.q-password.file = ../../secrets/q-pass.age;

              
                10
                9
                 

              
                11
                10
                   users.users.q = {