update image

This commit is contained in:
iFargle 2023-09-17 09:49:53 +09:00
parent 86e0a69c8d
commit 6540ed0f8c
2 changed files with 4 additions and 1 deletions

View file

@ -20,7 +20,7 @@
in {
nixosConfigurations = {
# Generic Images / ISOs
nixos-rpi4-img = libx.mkHost { hostname = "nixos-rpi4-img"; platform = "aarch64-linux"; installer = nixpkgs + "/nixos/modules/installer/sd-card/sd-image-raspberrypi.nix"; };
nixos-rpi4-img = libx.mkHost { hostname = "nixos-rpi4-img"; platform = "aarch64-linux"; installer = nixpkgs + "/nixos/modules/installer/sd-card/sd-image-raspberrypi.nix"; stateVersion = "23.05"; };
# Host Specific Configs
nixos-laptop = libx.mkHost { hostname = "nixos-laptop"; desktop = "hyprland"; gpu = "intel"; theme = "gruvbox"; };
nixos-framework = libx.mkHost { hostname = "nixos-framework"; desktop = "hyprland"; gpu = "amd"; theme = "gruvbox"; };

View file

@ -2,6 +2,9 @@
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }: {
modules = [
];
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
system.stateVersion = lib.mkDefault "23.05";
networking.hostName = "nixos-rpi4-img";