mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-03-15 16:54:14 +00:00
14 lines
281 B
Nix
14 lines
281 B
Nix
|
{ inputs, ... }: {
|
||
|
imports = [
|
||
|
inputs.raspberry-pi-nix.nixosModules.raspberry-pi
|
||
|
inputs.raspberry-pi-nix.nixosModules.sd-image
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
networking.hostName = "near";
|
||
|
|
||
|
time.timeZone = "America/New_York";
|
||
|
|
||
|
system.stateVersion = "24.11";
|
||
|
}
|