hosts: automatic updates with semantic versioning (#70)
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

* hosts/common: set default FLAKE

* fallarbor,rustboro: use latest flake published on flakehub
This commit is contained in:
Aly Raffauf 2024-07-30 20:02:24 -04:00 committed by GitHub
parent 1d4cf53541
commit b05223bd9f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 3 deletions

View file

@ -1,9 +1,10 @@
{
config,
lib,
pkgs,
...
}: {
environment.variables.FLAKE = "github:alyraffauf/nixcfg";
environment.variables.FLAKE = lib.mkDefault "github:alyraffauf/nixcfg";
nix.settings = {
substituters = [

View file

@ -18,7 +18,11 @@
systemd-boot.enable = true;
};
environment.variables.GDK_SCALE = "1.5";
environment.variables = {
FLAKE = "https://flakehub.com/f/alyraffauf/nixcfg/*.tar.gz";
GDK_SCALE = "1.5";
};
networking.hostName = "fallarbor";
system.stateVersion = "24.05";

View file

@ -18,7 +18,11 @@
systemd-boot.enable = true;
};
environment.variables.GDK_SCALE = "1.25";
environment.variables = {
FLAKE = "https://flakehub.com/f/alyraffauf/nixcfg/*.tar.gz";
GDK_SCALE = "1.25";
};
networking.hostName = "rustboro";
system.stateVersion = "24.05";
zramSwap.memoryPercent = 100;