this repo has no description
0
fork

Configure Feed

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

:fire: removed work profile

-77
-21
README.org
··· 21 21 pedro = { 22 22 username = "pedro"; 23 23 }; 24 - work = { 25 - username = "pedro-correa"; 26 - }; 27 24 }; 28 25 in { 29 26 <<outputs>> ··· 137 134 }; 138 135 }; 139 136 #+end_src 140 - 141 - **** Work 142 - #+begin_src nix 143 - homeConfigurations = { 144 - work = home-manager.lib.homeManagerConfiguration { 145 - inherit pkgs; 146 - extraSpecialArgs = { 147 - inherit stateVersion; 148 - username = users.work.username; 149 - }; 150 - modules = [ 151 - vicinae.homeManagerModules.default 152 - ./home 153 - ./home/work.nix 154 - ]; 155 - }; 156 - }; 157 - #+end_src
-17
flake.nix
··· 30 30 pedro = { 31 31 username = "pedro"; 32 32 }; 33 - work = { 34 - username = "pedro-correa"; 35 - }; 36 33 }; 37 34 in { 38 35 formatter.x86_64-linux = pkgs.alejandra; ··· 79 76 vicinae.homeManagerModules.default 80 77 ./home 81 78 ./home/personal.nix 82 - ]; 83 - }; 84 - }; 85 - homeConfigurations = { 86 - work = home-manager.lib.homeManagerConfiguration { 87 - inherit pkgs; 88 - extraSpecialArgs = { 89 - inherit stateVersion; 90 - username = users.work.username; 91 - }; 92 - modules = [ 93 - vicinae.homeManagerModules.default 94 - ./home 95 - ./home/work.nix 96 79 ]; 97 80 }; 98 81 };
-36
home/work.nix
··· 1 - { 2 - config, 3 - pkgs, 4 - username, 5 - stateVersion, 6 - ... 7 - }: { 8 - nixpkgs = { 9 - config = { 10 - allowUnfree = true; 11 - }; 12 - }; 13 - 14 - home.packages = with pkgs; [ 15 - wl-clipboard 16 - nodePackages.mermaid-cli 17 - code-cursor 18 - d2 19 - jetbrains.datagrip 20 - ]; 21 - 22 - programs.git = { 23 - signing = { 24 - key = "B67C86C563761C3A"; 25 - signByDefault = true; 26 - }; 27 - }; 28 - 29 - programs.jujutsu.settings = { 30 - signing = { 31 - behavior = "own"; 32 - backend = "gpg"; 33 - key = "B67C86C563761C3A"; 34 - }; 35 - }; 36 - }
-3
justfile
··· 1 1 pedro: 2 2 home-manager switch --flake 'flake.nix#pedro' 3 3 4 - work: 5 - home-manager switch --flake 'flake.nix#work' 6 - 7 4 system: 8 5 sudo nixos-rebuild switch --flake 'flake.nix#nixos'