mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:43:55 -05:00
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
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:
parent
1d4cf53541
commit
b05223bd9f
|
@ -1,9 +1,10 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
environment.variables.FLAKE = "github:alyraffauf/nixcfg";
|
environment.variables.FLAKE = lib.mkDefault "github:alyraffauf/nixcfg";
|
||||||
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
substituters = [
|
substituters = [
|
||||||
|
|
|
@ -18,7 +18,11 @@
|
||||||
systemd-boot.enable = true;
|
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";
|
networking.hostName = "fallarbor";
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,11 @@
|
||||||
systemd-boot.enable = true;
|
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";
|
networking.hostName = "rustboro";
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
zramSwap.memoryPercent = 100;
|
zramSwap.memoryPercent = 100;
|
||||||
|
|
Loading…
Reference in a new issue