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.

docs(readme): update docs

+13 -2
+13 -2
README.md
··· 13 13 | Nix Flake Builds (push) | GitHub Actions | [![Nix Flake Builds](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml/badge.svg)](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml) | 14 14 | Nix Flake Builds (schedule, every 06:30 UTC Saturday) | GitHub Actions | [![Nix Flake Builds](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml/badge.svg?event=schedule)](https://github.com/andreijiroh-dev/nixops-config/actions/workflows/update-flakes.yml) | 15 15 16 + ## Mirrors 17 + 18 + Canonically published at [GitLab SaaS](https://gitlab.com/andreijiroh-dev/nixops-config), 19 + with push mirroring enabled to [GitHub](https://github.com/andreijiroh-dev/nixops-config). 20 + Along with the following mirrors: 21 + 22 + - [sourcehut hosted](https://sr.ht/~ajhalili2006/nixops-config) 23 + - [Manimun GitLab](https://mau.dev/andreijiroh-dev/nixops-config) 24 + 16 25 ## Usage 17 26 18 27 ### Installing NixOS ··· 117 126 nixosConfigurations.your-mom = nixpkgs.lib.nixosSystem { 118 127 system = "x86_64-linux"; 119 128 modules = [ 120 - andreijiroh-dev.nixosModules.networking # or any other modules 129 + andreijiroh-dev.exportedConfigs.networking # or any other modules 121 130 ]; 122 131 }; 123 132 }; ··· 138 147 nix build .#nixosConfigurations.recoverykit-amd64.config.system.build.isoImage 139 148 ``` 140 149 141 - ## Availabled shared configs 150 + ## Available shared configs 151 + 152 + These are accessible via `exportedConfigs` object after importing this flake on your `flake.nix` file. 142 153 143 154 - `base` - Individual base components' configuration (systemd, networking, etc.) 144 155 - [`sshKeys`](./shared/ssh-keys.nix) - My SSH public keys, declaratively managed.