NOflake/systems/NOcamp.nix

16 lines
252 B
Nix
Raw Normal View History

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