This commit is contained in:
iFargle 2023-09-17 10:02:09 +09:00
parent 6540ed0f8c
commit 13432db4ea
2 changed files with 3 additions and 3 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"; stateVersion = "23.05"; };
nixos-rpi4-img = libx.mkHost { hostname = "nixos-rpi4-img"; platform = "aarch64-linux"; installer = nixpkgs + "/nixos/modules/installer/sd-card/sd-image-raspberrypi.nix"; };
# 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

@ -6,7 +6,7 @@
];
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
system.stateVersion = lib.mkDefault "23.05";
# system.stateVersion = lib.mkDefault "23.05";
networking.hostName = "nixos-rpi4-img";
networking.firewall.allowedTCPPorts = [ 22 ];
}