NOflake/systems/NOcamp.nix
2023-11-01 18:58:21 -07:00

15 lines
271 B
Nix

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