NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

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

chore: enable vscode-server Nix module and clean up unused specialArgs on hm

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+17 -12
+3 -3
flake.lock
··· 153 153 ] 154 154 }, 155 155 "locked": { 156 - "lastModified": 1759261733, 157 - "narHash": "sha256-G104PUPKBgJmcu4NWs0LUaPpSOTD4jiq4mamLWu3Oc0=", 156 + "lastModified": 1759337100, 157 + "narHash": "sha256-CcT3QvZ74NGfM+lSOILcCEeU+SnqXRvl1XCRHenZ0Us=", 158 158 "owner": "nix-community", 159 159 "repo": "home-manager", 160 - "rev": "5a21f4819ee1be645f46d6b255d49f4271ef6723", 160 + "rev": "004753ae6b04c4b18aa07192c1106800aaacf6c3", 161 161 "type": "github" 162 162 }, 163 163 "original": {
+1 -7
flake.nix
··· 138 138 nix-ld.nixosModules.nix-ld 139 139 140 140 # one-liners? 141 - { programs.nix-ld.dev.enable = true; } 141 + ./shared/vscode/server.nix 142 142 ]; 143 143 specialArgs = { 144 144 zen-browser = zen-browser; ··· 163 163 }; 164 164 } 165 165 ]; 166 - specialArgs = { 167 - zen-browser = zen-browser; 168 - }; 169 166 }; 170 167 171 168 # Usage ··· 182 179 home.homeDirectory = "/home/ajhalili2006"; 183 180 } 184 181 ]; 185 - specialArgs = { 186 - zen-browser = zen-browser; 187 - }; 188 182 }; 189 183 190 184 # Usage
+2 -1
shared/1password.nix
··· 18 18 ]; 19 19 }; 20 20 21 + 21 22 # HACK: Allow zen-browser and vivaldi to be used with 1Password 22 23 environment.etc = { 23 24 "1password/custom_allowed_browsers" = { 24 25 text = '' 25 26 zen 26 - 27 + vivaldi-bin 27 28 vivaldi 28 29 ''; 29 30 mode = "0755";
+1 -1
shared/meta-configs.nix
··· 118 118 # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). 119 119 # TODO: Always bump this to next point release once the current value is 120 120 # officially released to stable after reading the changelog. 121 - system.stateVersion = "25.05"; # Did you read the comment? 121 + system.stateVersion = "25.11"; # Did you read the comment? 122 122 }
+10
shared/vscode/server.nix
··· 1 + { config, pkgs, ... }; 2 + 3 + { 4 + programs.vscode-server.enable = true; 5 + services.vscode-server.installPath = [ 6 + "$HOME/.vscode-server" 7 + "$HOME/.vscode-server-oss" 8 + "$HOME/.vscode-server-insiders" 9 + ]; 10 + }