NOflake/systems/NOcamp.nix
2023-07-19 20:26:20 -07:00

15 lines
252 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
qgroundcontrol
qgis-ltr
arduino
firefox
];
networking.hostName = "NObcer";
users.users.ssrov = {
isNormalUser = true;
extraGroups = [ "dialout" ];
hashedPassword = "";
};
}