Merge branch 'main' into ci
This commit is contained in:
commit
e135396e82
3 changed files with 13 additions and 0 deletions
|
@ -1,6 +1,10 @@
|
||||||
# Truxnell's homelab
|
# Truxnell's homelab
|
||||||
|
|
||||||
|
[![NixOS](https://img.shields.io/badge/NIXOS-5277C3.svg?style=for-the-badge&logo=NixOS&logoColor=white)](https://nixos.org)
|
||||||
[![NixOS](https://img.shields.io/badge/NixOS-23.11-blue?style=flat&logo=nixos&logoColor=white)](https://nixos.org)
|
[![NixOS](https://img.shields.io/badge/NixOS-23.11-blue?style=flat&logo=nixos&logoColor=white)](https://nixos.org)
|
||||||
|
[![built with garnix](https://img.shields.io/endpoint.svg?url=https%3A%2F%2Fgarnix.io%2Fapi%2Fbadges%2Ftruxnell%2Fnix-config%3Fbranch%3Dmain)](https://garnix.io)
|
||||||
|
[![MIT License](https://img.shields.io/github/license/truxnell/nix-config)][mit]
|
||||||
|
|
||||||
Leveraging nix, nix-os to apply machine and home configurations
|
Leveraging nix, nix-os to apply machine and home configurations
|
||||||
|
|
||||||
## Background
|
## Background
|
||||||
|
|
7
garnix.yaml
Normal file
7
garnix.yaml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
builds:
|
||||||
|
include:
|
||||||
|
- homeConfigurations.*
|
||||||
|
- nixosConfigurations.*
|
||||||
|
- packages.x86_64-linux.*
|
||||||
|
- packages.aarch64-linux.*
|
||||||
|
|
|
@ -9,9 +9,11 @@
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
substituters = [
|
substituters = [
|
||||||
"https://nix-community.cachix.org"
|
"https://nix-community.cachix.org"
|
||||||
|
"https://cache.garnix.io"
|
||||||
];
|
];
|
||||||
trusted-public-keys = [
|
trusted-public-keys = [
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||||
|
"cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g="
|
||||||
];
|
];
|
||||||
trusted-users = [ "root" "@wheel" ];
|
trusted-users = [ "root" "@wheel" ];
|
||||||
auto-optimise-store = lib.mkDefault true;
|
auto-optimise-store = lib.mkDefault true;
|
||||||
|
|
Reference in a new issue