weather: switch to unstable

This commit is contained in:
Aaron Bieber 2022-09-22 13:18:24 -06:00
parent 9a7eb474e5
commit 347b39c697
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -138,10 +138,10 @@
h = buildSys "x86_64-linux" unstableSmall [ ] "h";
stan = buildSys "x86_64-linux" unstable
[ nixos-hardware.nixosModules.framework ] "stan";
weather = buildSys "aarch64-linux" stable
weather = buildSys "aarch64-linux" unstable
[ nixos-hardware.nixosModules.raspberry-pi-4 ] "weather";
weatherInstall = stable.lib.nixosSystem {
weatherInstall = unstable.lib.nixosSystem {
system = "aarch64-linux";
modules = [

View File

@ -8,7 +8,7 @@ let
];
userBase = { openssh.authorizedKeys.keys = pubKeys; };
in {
_module.args.isUnstable = false;
_module.args.isUnstable = true;
imports = [ ./hardware-configuration.nix ];
defaultUsers.enable = false;