1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-04-03 18:14:15 +00:00
.dotfiles/nixos/hosts/near/configuration.nix
2025-03-03 19:48:52 -05:00

14 lines
295 B
Nix

{ inputs, ... }: {
imports = [
inputs.raspberry-pi-nix.nixosModules.raspberry-pi
inputs.raspberry-pi-nix.nixosModules.sd-image
./hardware-configuration.nix
../base.nix
];
networking.hostName = "near";
time.timeZone = "America/New_York";
system.stateVersion = "24.11";
}