NOflake/systems/NOcamp.nix

16 lines
271 B
Nix
Raw Normal View History

2023-07-18 22:14:59 -07: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;
extraGroups = [ "dialout" ];
hashedPassword = "";
};
2023-07-18 22:14:59 -07:00
}