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.

Guess I forgot to enable flakes then

+12 -1
+3
.github/workflows/update-flakes.yml
··· 13 13 uses: cachix/install-nix-action@v14 14 14 with: 15 15 nix_path: nixpkgs=channel:nixos-unstable 16 + extra_nix_config: | 17 + experimental-features = nix-command flakes 18 + access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} 16 19 17 20 - name: Update flake 18 21 run: nix flake update
+8
README.md
··· 1 + # `@andreijiroh-dev/nixops-config` 2 + 3 + ## Usage 4 + 5 + ```bash 6 + # change {hostname} to something like stellapent-cier 7 + sudo nixos-rebuild --flake github:andreijiroh-dev/nixops-config#{hostname} <switch|boot|build> 8 + ```
+1 -1
hosts/stellapent-cier/users/gildedguy.nix
··· 1 1 { config, pkgs, lib, ... }: 2 2 3 3 let 4 - vscExts = (import ../../../shared/vscode-extensions.nix) { 4 + vscExts = (import ../../../shared/vscode/extensions.nix) { 5 5 pkgs = pkgs; 6 6 lib = lib; 7 7 };