NOflake/systems/NOcamp.nix

16 lines
267 B
Nix
Raw Normal View History

2024-02-24 02:30:17 -08:00
{pkgs, ...}: {
2023-11-01 18:58:21 -07:00
environment.systemPackages = with pkgs; [
arduino
firefox
qgis-ltr
qgroundcontrol
];
2023-07-19 20:26:20 -07:00
2023-11-01 18:58:21 -07:00
networking.hostName = "NObcer";
users.users.ssrov = {
isNormalUser = true;
2024-02-24 02:30:17 -08:00
extraGroups = ["dialout"];
2023-11-01 18:58:21 -07:00
hashedPassword = "";
};
2023-07-18 22:14:59 -07:00
}